Skip to content

Commit

Permalink
Update dist script with CGO_ENABLED=0
Browse files Browse the repository at this point in the history
  • Loading branch information
jangler committed Mar 20, 2022
1 parent 6675d65 commit dc2ffa7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/mkdist.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ mkdir -p "dist/$version"

function buildfor() {
echo "building for $1/$2"
GOOS=$1 GOARCH=$2 go build
CGO_ENABLED=0 GOOS=$1 GOARCH=$2 go build
apack -q "dist/$version/$appname"_$3_"$version.zip" "$appname$4" \
Oracles.lua README*.txt checklist/ tracker/
}
Expand Down

0 comments on commit dc2ffa7

Please sign in to comment.