From 254e9fb7d608325f0b0bc24de4416ce89d8ddbdd Mon Sep 17 00:00:00 2001 From: Russ Magee Date: Mon, 12 Sep 2022 22:05:03 -0700 Subject: [PATCH] Reintroduce go mod init/tidy --- bacillus/ci_pushbuild.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/bacillus/ci_pushbuild.sh b/bacillus/ci_pushbuild.sh index b94f39e..b7bd693 100755 --- a/bacillus/ci_pushbuild.sh +++ b/bacillus/ci_pushbuild.sh @@ -29,10 +29,10 @@ 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