From cca689060caf45b701006ae81ea4ae9a5869e4f4 Mon Sep 17 00:00:00 2001 From: ruedap Date: Tue, 6 Jun 2017 13:28:04 +0900 Subject: [PATCH] Revert "Introduce upx in build process" This reverts commit edd8297ae9717ab2ad3b05feb32fc9c2884ec366. --- Makefile | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/Makefile b/Makefile index c599111..c5eb2a4 100644 --- a/Makefile +++ b/Makefile @@ -3,11 +3,11 @@ WORKFLOW_DIR = ~/Dropbox/Alfred/Alfred.alfredpreferences/workflows BUNDLE_ID = com.ruedap.emma-css CLI_CMD = ./workflow/awc -default: build upx cli test +default: build cli test ci: build cli coveralls -release: clean build upx unlink link +release: clean build unlink link cli: @echo "--> Running CLI commands" @@ -16,10 +16,7 @@ cli: build: @echo "--> Compiling packages and dependencies" @mkdir -p ./workflow/ - go build -ldflags '-w -s' -o $(CLI_CMD) - -upx: - upx -5 $(CLI_CMD) + go build -ldflags '-s -w' -o $(CLI_CMD) coveralls: @echo "--> Testing packages and sending coverage report"