diff options
| -rw-r--r-- | env.go | 2 | ||||
| -rw-r--r-- | go.mod | 2 | ||||
| -rw-r--r-- | go.sum | 4 |
3 files changed, 4 insertions, 4 deletions
@@ -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() } @@ -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 ) @@ -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= |
