We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eb5c565 commit 231fa3cCopy full SHA for 231fa3c
Makefile
@@ -16,9 +16,8 @@ install: ## Install executable
16
clear-build: ## Clear content of build directory
17
rm build/goradio*
18
19
-release: ## Build for windows, linux and darwin
20
- for os in darwin linux windows; do \
+release: ## Build for linux and darwin
+ for os in darwin linux; do \
21
env GOOS=$$os GOARCH=amd64 go build -ldflags="-s -w" -o build/goradio-$$os-amd64; \
22
- upx --brute build/goradio-$$os-amd64; \
23
done; \
24
- mv build/goradio-windows-amd64 build/goradio-windows-amd64.exe
+ upx --brute build/goradio-*; \
0 commit comments