Skip to content

Commit

Permalink
Bumps go version; tweaks ms build script
Browse files Browse the repository at this point in the history
  • Loading branch information
sbeus committed Sep 6, 2024
1 parent 75b4b0d commit c1028fe
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .assets/scripts/build-local.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
root="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
proj=$root/../../

goversion=1.22.0
goversion=1.23.0
gotarget=`uname -s | awk '{print tolower($0)}'`
gobundle=go${goversion}.${gotarget}-amd64.tar.gz
gourl=https://storage.googleapis.com/golang/$gobundle
Expand Down
4 changes: 2 additions & 2 deletions .assets/scripts/build-ms.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

root="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"

GOOS=windows GOARCH=386 $root/build.sh
$root/build.sh --os=windows --arch=386
cp $GOPATH/bin/sts.exe $root/sts-32.exe

GOOS=windows GOARCH=amd64 $root/build.sh
$root/build.sh --os=windows --arch=amd64
cp $GOPATH/bin/sts.exe $root/sts-64.exe

zip ~/sts-ms.zip sts-32.exe sts-64.exe
Expand Down

0 comments on commit c1028fe

Please sign in to comment.