From 4a0e03798db3c0a5cfcc8a26ad4a55126ac6b434 Mon Sep 17 00:00:00 2001 From: Russ Magee Date: Mon, 8 Dec 2025 21:49:46 -0800 Subject: [PATCH] Added explicit toplevel pkg to go mod init cmd --- bacillus/ci_pushbuild.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bacillus/ci_pushbuild.sh b/bacillus/ci_pushbuild.sh index d40dde9..741aa8d 100755 --- a/bacillus/ci_pushbuild.sh +++ b/bacillus/ci_pushbuild.sh @@ -25,9 +25,9 @@ echo "Building most recent push on branch $branch" git checkout "$branch" ls -git pull go clean -modcache -go mod init +rm -f go.{mod,sum} +go mod init blitter.com/go/xs go mod tidy ############