From 277e2224b049778c7cbd5b6bae86e786fda6d34d Mon Sep 17 00:00:00 2001 From: Nick White Date: Tue, 10 Mar 2020 13:34:34 +0000 Subject: Ensure go modules are enabled (should have been by default last time, but was not) --- roles/pipeliner/templates/updatepipeline.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/pipeliner/templates/updatepipeline.j2 b/roles/pipeliner/templates/updatepipeline.j2 index 0f5b439..5e0e842 100644 --- a/roles/pipeliner/templates/updatepipeline.j2 +++ b/roles/pipeliner/templates/updatepipeline.j2 @@ -6,7 +6,7 @@ t="/home/{{ ansible_user }}/trainings" # (they don't work for the go get stage in go 1.11) export GOPATH="$g" go get -u rescribe.xyz/bookpipeline/... && \ -cd "$g/src/rescribe.xyz/bookpipeline" && go install ./... && \ +cd "$g/src/rescribe.xyz/bookpipeline" && GO111MODULE=on go install ./... && \ sudo cp "$g/bin/bookpipeline" /usr/local/bin/ || exit 1 cd "$t" && git pull && \ -- cgit v1.2.1-24-ge1ad