From 677172dc1f27a23fc950fd2bbe61263196353907 Mon Sep 17 00:00:00 2001 From: Russ Magee Date: Fri, 12 Aug 2022 21:56:09 -0700 Subject: [PATCH] Avoid dependence on goproxy (use vendored deps) --- bacillus/ci_pushbuild.sh | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/bacillus/ci_pushbuild.sh b/bacillus/ci_pushbuild.sh index f69ee21..b94f39e 100755 --- a/bacillus/ci_pushbuild.sh +++ b/bacillus/ci_pushbuild.sh @@ -29,15 +29,17 @@ ls stage "Build" ############ echo "Recreating go.mod from scratch ..." -mv go.mod go.mod.git || true -mv go.sum go.sum.git || true -go mod init -go mod tidy +#!mv go.mod go.mod.git || true +#!mv go.sum go.sum.git || true +#!go mod init +#!go mod tidy echo "Cleaning go mod cache ..." go clean -modcache echo "Cleaning go cache ..." go clean -cache +echo "Invoking 'make clean' ..." +make clean echo "Invoking 'make all' ..." make all