Skip to content

Commit 231fa3c

Browse files
author
Mateusz Lopacinski
committed
remove windows platform from release build
1 parent eb5c565 commit 231fa3c

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

Makefile

+3-4
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,8 @@ install: ## Install executable
1616
clear-build: ## Clear content of build directory
1717
rm build/goradio*
1818

19-
release: ## Build for windows, linux and darwin
20-
for os in darwin linux windows; do \
19+
release: ## Build for linux and darwin
20+
for os in darwin linux; do \
2121
env GOOS=$$os GOARCH=amd64 go build -ldflags="-s -w" -o build/goradio-$$os-amd64; \
22-
upx --brute build/goradio-$$os-amd64; \
2322
done; \
24-
mv build/goradio-windows-amd64 build/goradio-windows-amd64.exe
23+
upx --brute build/goradio-*; \

0 commit comments

Comments
 (0)