We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 18865f8 commit bb4af68Copy full SHA for bb4af68
2 files changed
.gitignore
@@ -0,0 +1 @@
1
+out
build.sh
@@ -0,0 +1,7 @@
+#!/bin/bash
2
+
3
+rm -rf out
4
5
+GOOS=linux GOARCH=amd64 go build -o out/soos-Linux-x86_64 -ldflags='-s -w' soos.go && upx --brute out/soos-Linux-x86_64
6
+GOOS=darwin GOARCH=amd64 go build -o out/soos-Darwin-x86_64 -ldflags='-s -w' soos.go && upx --brute out/soos-Darwin-x86_64
7
+GOOS=windows GOARCH=amd64 go build -o out/soos-Windows-x86_64.exe -ldflags='-s -w' soos.go && upx --brute out/soos-Windows-x86_64.exe
0 commit comments