build: windows upx

* changed windows deploy script back to use upx --brute
This commit is contained in:
malte_langkabel
2016-09-16 10:31:04 +02:00
parent 169ca74aa3
commit 8fcb35611d
+2 -2
View File
@@ -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