You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
majority-judgment-cli/build.sh

17 lines
290 B

#!/bin/bash
# Install things first
#apt install upx
#go get github.com/ahmetb/govvv
go build \
-ldflags="$(govvv -flags -pkg $(go list ./version)) -s -w" \
-o mj
GOOS=windows GOARCH=amd64 go build \
-ldflags="$(govvv -flags -pkg $(go list ./version)) -s -w" \
-o mj.exe
upx mj