Whack-A-CI!!
This commit is contained in:
parent
b224002280
commit
85c4e29b5c
@ -2,7 +2,7 @@
|
|||||||
function addFile {
|
function addFile {
|
||||||
echo $1
|
echo $1
|
||||||
cp $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
|
echo "Source: \"$(basename $1)\"; DestDir: \"{app}\"; Flags: ignoreversion" >> installer.iss
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -10,7 +10,7 @@ function addFileIn {
|
|||||||
name=$2\\$(basename $1)
|
name=$2\\$(basename $1)
|
||||||
mkdir -p $2
|
mkdir -p $2
|
||||||
cp $1 $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
|
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 /c/OpenSSL-Win32/bin/
|
||||||
|
|
||||||
ls
|
|
||||||
|
|
||||||
cat installer.iss.pattern.bottom >> installer.iss
|
cat installer.iss.pattern.bottom >> installer.iss
|
||||||
"C:\Program Files (x86)\Inno Setup 5\ISCC.exe" installer.iss
|
"C:\Program Files (x86)\Inno Setup 5\ISCC.exe" installer.iss
|
||||||
cp Output/setup.exe ../../installer.exe || exit 1
|
cp Output/setup.exe ../../installer.exe || exit 1
|
||||||
|
Loading…
x
Reference in New Issue
Block a user