From 85c4e29b5c7622b9cd1f8871bc7f4c6c67f3379f Mon Sep 17 00:00:00 2001 From: ArsenArsen Date: Thu, 20 Jul 2017 18:28:54 +0200 Subject: [PATCH] Whack-A-CI!! --- AppVeyor/make_installer.sh | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/AppVeyor/make_installer.sh b/AppVeyor/make_installer.sh index 6ed54db..3692153 100644 --- a/AppVeyor/make_installer.sh +++ b/AppVeyor/make_installer.sh @@ -2,7 +2,7 @@ function addFile { echo $1 cp $1 . - 7z a -tzip portable.zip $(basename $1) + 7z a -tzip portable.zip $(basename $1) > /dev/null echo "Source: \"$(basename $1)\"; DestDir: \"{app}\"; Flags: ignoreversion" >> installer.iss } @@ -10,7 +10,7 @@ function addFileIn { name=$2\\$(basename $1) mkdir -p $2 cp $1 $2 - 7z a -tzip portable.zip $name + 7z a -tzip portable.zip $name > /dev/null echo "Source: \"$name\"; DestDir: \"{app}\\$2\"; Flags: ignoreversion" >> installer.iss } @@ -45,8 +45,6 @@ addFile /c/OpenSSL-Win32/bin/msvcr120.dll ls /c/OpenSSL-Win32/bin/ -ls - cat installer.iss.pattern.bottom >> installer.iss "C:\Program Files (x86)\Inno Setup 5\ISCC.exe" installer.iss cp Output/setup.exe ../../installer.exe || exit 1