From 0303b394c8ba9c0384cbb8836cb59127f247b33a Mon Sep 17 00:00:00 2001 From: Russ Magee Date: Thu, 30 Jan 2020 12:58:08 -0800 Subject: [PATCH] fixed /home/russtopia/bin:/opt/eclipse:/usr/lib/go/bin:/home/russtopia/go/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/opt/bin in push build script Signed-off-by: Russ Magee --- bacillus/ci_pushbuild.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/bacillus/ci_pushbuild.sh b/bacillus/ci_pushbuild.sh index e763c98..19e1c57 100755 --- a/bacillus/ci_pushbuild.sh +++ b/bacillus/ci_pushbuild.sh @@ -1,14 +1,14 @@ #!/bin/bash -export PATH=/usr/local/bin:/usr/bin:/usr/lib/ccache/bin:/bin -echo "workdir: ${BACILLUS_WORKDIR}" -mkdir -p "${BACILLUS_ARTFDIR}" - -export GO111MODULE=on export GOPATH="${HOME}/go" +export PATH=/usr/local/bin:/usr/bin:/usr/lib/ccache/bin:/bin:$GOPATH/bin +export GO111MODULE=on # GOCACHE will be phased out in v1.12. [github.com/golang/go/issues/26809] export GOCACHE="${HOME}/.cache/go-build" +echo "workdir: ${BACILLUS_WORKDIR}" +mkdir -p "${BACILLUS_ARTFDIR}" + echo "---" go env echo "---"