Reintroduce go mod init/tidy and remove old vendor dir if present

This commit is contained in:
Russ Magee 2022-09-12 22:05:03 -07:00
parent 653e732445
commit 5b6bec0287
1 changed files with 6 additions and 4 deletions

View File

@ -28,11 +28,13 @@ ls
############
stage "Build"
############
echo "Removing any vendor/ dir if present ..."
rm -rf vendor
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