summaryrefslogtreecommitdiff
path: root/roles/pipeliner/templates/updatepipeline.j2
diff options
context:
space:
mode:
Diffstat (limited to 'roles/pipeliner/templates/updatepipeline.j2')
-rw-r--r--roles/pipeliner/templates/updatepipeline.j24
1 files changed, 3 insertions, 1 deletions
diff --git a/roles/pipeliner/templates/updatepipeline.j2 b/roles/pipeliner/templates/updatepipeline.j2
index 5e0e842..43b3c4f 100644
--- a/roles/pipeliner/templates/updatepipeline.j2
+++ b/roles/pipeliner/templates/updatepipeline.j2
@@ -6,7 +6,9 @@ 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" && GO111MODULE=on go install ./... && \
+cd "$g/src/rescribe.xyz/bookpipeline" && \
+GO111MODULE=on go get -u rescribe.xyz/bookpipeline/... && \
+GO111MODULE=on go install ./... && \
sudo cp "$g/bin/bookpipeline" /usr/local/bin/ || exit 1
cd "$t" && git pull && \