From 8fcb35611d335d87ce82a52b68c0f13917da215d Mon Sep 17 00:00:00 2001 From: malte_langkabel Date: Fri, 16 Sep 2016 10:31:04 +0200 Subject: [PATCH] build: windows upx * changed windows deploy script back to use upx --brute --- script/deploy_windows.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/script/deploy_windows.sh b/script/deploy_windows.sh index be50efe2..e163c7e7 100644 --- a/script/deploy_windows.sh +++ b/script/deploy_windows.sh @@ -96,8 +96,8 @@ if [ $OBFUSCATE = true ]; then echo -e "$INFO obfuscating the executables" rm bin/app/Release/Coati_obfuscated.exe rm bin/app/Release/Coati_trial_obfuscated.exe - upx --best -o bin/app/Release/Coati_obfuscated.exe bin/app/Release/Coati.exe - upx --best -o bin/app/Release/Coati_trial_obfuscated.exe bin/app/Release/Coati_trial.exe + upx --brute -o bin/app/Release/Coati_obfuscated.exe bin/app/Release/Coati.exe + upx --brute -o bin/app/Release/Coati_trial_obfuscated.exe bin/app/Release/Coati_trial.exe else cp bin/app/Release/Coati.exe bin/app/Release/Coati_obfuscated.exe cp bin/app/Release/Coati_trial.exe bin/app/Release/Coati_trial_obfuscated.exe