From c250f75d1d176c149c9049793be6ba0e2c6095c8 Mon Sep 17 00:00:00 2001 From: Jingfang Liu Date: Thu, 6 Jun 2019 09:35:25 -0700 Subject: [PATCH] enable go module in the integration test (#1153) --- examples/integration_tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/integration_tests.sh b/examples/integration_tests.sh index feb81dbcc..7d5cd9c3d 100755 --- a/examples/integration_tests.sh +++ b/examples/integration_tests.sh @@ -53,7 +53,7 @@ function setUpEnv { exitWith "Script must be run from $expectedRepo" fi - go install . || \ + GO111MODULE=on go install . || \ { exitWith "Failed to install kustomize."; } PATH=$GOPATH/bin:$PATH