From 9d87359c62ecc27ea3a5c8b61e3a03437ddfae55 Mon Sep 17 00:00:00 2001 From: Zack Scholl Date: Fri, 18 Aug 2017 07:05:10 -0700 Subject: [PATCH] Remove upx for now --- Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 620f411..03eca63 100644 --- a/Makefile +++ b/Makefile @@ -12,22 +12,22 @@ build: .PHONY: linuxarm linuxarm: env GOOS=linux GOARCH=arm go build ${LDFLAGS} -o dist/cowyo_linux_arm - cd dist && upx --brute cowyo_linux_arm + #cd dist && upx --brute cowyo_linux_arm .PHONY: linux64 linux64: env GOOS=linux GOARCH=amd64 go build ${LDFLAGS} -o dist/cowyo_linux_amd64 - cd dist && upx --brute cowyo_linux_amd64 + #cd dist && upx --brute cowyo_linux_amd64 .PHONY: windows windows: env GOOS=windows GOARCH=amd64 go build ${LDFLAGS} -o dist/cowyo_windows_amd64.exe - cd dist && upx --brute cowyo_windows_amd64.exe + #cd dist && upx --brute cowyo_windows_amd64.exe .PHONY: osx osx: env GOOS=darwin GOARCH=amd64 go build ${LDFLAGS} -o dist/cowyo_osx_amd64 - cd dist && upx --brute cowyo_osx_amd64 + #cd dist && upx --brute cowyo_osx_amd64 .PHONY: release release: osx windows linux64 linuxarm