aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--env.go2
-rw-r--r--go.mod2
-rw-r--r--go.sum4
3 files changed, 4 insertions, 4 deletions
diff --git a/env.go b/env.go
index da8acb9..5f356ba 100644
--- a/env.go
+++ b/env.go
@@ -603,7 +603,7 @@ func (env *Env) loadBeku() {
for _, v := range secBeku.Vars {
if v.KeyLower == keyVendor {
- if v.IsValueBoolTrue() {
+ if ini.IsValueBoolTrue(v.Value) {
env.vendor = true
_ = env.initVendor()
}
diff --git a/go.mod b/go.mod
index ce78391..a66bc1f 100644
--- a/go.mod
+++ b/go.mod
@@ -1,6 +1,6 @@
module github.com/shuLhan/beku
require (
- github.com/shuLhan/share v0.0.0-20180917185021-1cae4ca316af
+ github.com/shuLhan/share v0.0.0-20180928221840-b16432d24a4a
golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e
)
diff --git a/go.sum b/go.sum
index 99d5c72..3b29e91 100644
--- a/go.sum
+++ b/go.sum
@@ -1,5 +1,5 @@
-github.com/shuLhan/share v0.0.0-20180917185021-1cae4ca316af h1:4anaErm2vW2TPfSP3kE9lgdixWmGOa6zkqP3acnqv6I=
-github.com/shuLhan/share v0.0.0-20180917185021-1cae4ca316af/go.mod h1:L4OhM+hxrUdsb+Im+o06N/wz4hzfu29/R9lqueL4HJI=
+github.com/shuLhan/share v0.0.0-20180928221840-b16432d24a4a h1:k4ZvnzULQDnrXk/oHyX5wo/4CphfrBDhIFKTOiDxoik=
+github.com/shuLhan/share v0.0.0-20180928221840-b16432d24a4a/go.mod h1:L4OhM+hxrUdsb+Im+o06N/wz4hzfu29/R9lqueL4HJI=
golang.org/x/sys v0.0.0-20180909124046-d0be0721c37e/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e h1:FDhOuMEY4JVRztM/gsbk+IKUQ8kj74bxZrgw87eMMVc=
golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ=