replace package alecthomas/template with text/template

This commit is contained in:
Chris Duong
2018-10-10 11:41:30 +08:00
parent b9a00522cd
commit ece3512d8e
5 changed files with 1 additions and 22 deletions
Generated
-12
View File
@@ -9,17 +9,6 @@
revision = "a3f95b5c423586578a4e099b11a46c2479628cac"
version = "1.0.2"
[[projects]]
branch = "master"
digest = "1:315c5f2f60c76d89b871c73f9bd5fe689cad96597afd50fb9992228ef80bdd34"
name = "github.com/alecthomas/template"
packages = [
".",
"parse",
]
pruneopts = "UT"
revision = "a0175ee3bccc567396460bf5acd36800cb10c49c"
[[projects]]
branch = "master"
digest = "1:87009a0bb1cfbdf3e4659482c9c2259ab669162e3395cf05c63c01f6a0579a4c"
@@ -56,7 +45,6 @@
analyzer-version = 1
input-imports = [
"github.com/Sirupsen/logrus",
"github.com/alecthomas/template",
"github.com/ipedrazas/drone-helm/plugin",
"github.com/joho/godotenv",
"github.com/urfave/cli",
-4
View File
@@ -30,10 +30,6 @@ ignored = ["sort"]
name = "github.com/Sirupsen/logrus"
version = "1.0.2"
[[constraint]]
branch = "master"
name = "github.com/alecthomas/template"
[[constraint]]
name = "github.com/joho/godotenv"
version = "1.1.0"
Generated
-4
View File
@@ -1,10 +1,6 @@
hash: 9b60b1eb539de483dc15c738804dc646ff3b73064a8f0711cb47810c0895ba32
updated: 2017-07-25T13:57:56.120550369+03:00
imports:
- name: github.com/alecthomas/template
version: a0175ee3bccc567396460bf5acd36800cb10c49c
subpackages:
- parse
- name: github.com/joho/godotenv
version: 726cc8b906e3d31c70a9671c90a13716a8d3f50d
- name: github.com/Sirupsen/logrus
-1
View File
@@ -3,6 +3,5 @@ ignore:
- sort
import:
- package: github.com/Sirupsen/logrus
- package: github.com/alecthomas/template
- package: github.com/joho/godotenv
- package: github.com/urfave/cli
+1 -1
View File
@@ -10,7 +10,7 @@ import (
"strconv"
"strings"
"github.com/alecthomas/template"
"text/template"
)
var HELM_BIN = "/bin/helm"