From c4668980728ae151815716329007e606957e837f Mon Sep 17 00:00:00 2001 From: Russ Magee Date: Mon, 8 Dec 2025 22:20:03 -0800 Subject: [PATCH] Create go.{mod,sum} prior to make --- bacillus/ci_pushbuild.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/bacillus/ci_pushbuild.sh b/bacillus/ci_pushbuild.sh index ea20161..e090433 100755 --- a/bacillus/ci_pushbuild.sh +++ b/bacillus/ci_pushbuild.sh @@ -25,6 +25,9 @@ echo "Building most recent push on branch $branch" git checkout "$branch" ls +go mod init blitter.com/go/xs +go mod tidy + ############ stage "Build" ############