Skip to content

Commit

Permalink
Append platform name to package titles
Browse files Browse the repository at this point in the history
  • Loading branch information
kefir500 committed Sep 19, 2018
1 parent 764b58a commit c27e8ef
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion scripts/linux/installers/tar.xz/build.tar.xz.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
cd "$(dirname "$0")"
if [ -z "$VERSION" ]; then VERSION=$(cat ../../../../VERSION); fi
cp -R ../../../../bin/linux apk-editor-studio_linux_$VERSION
tar cfJ apk-editor-studio_$VERSION.tar.xz apk-editor-studio_$VERSION
tar cfJ apk-editor-studio_linux_$VERSION.tar.xz apk-editor-studio_$VERSION
rm -rf apk-editor-studio_$VERSION
4 changes: 2 additions & 2 deletions scripts/win32/installers/build.msi.bat
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ rmdir /s /q bin
rmdir /s /q obj

"%WIXDIR%\candle.exe" -out obj\ -arch x86 -ext WixUIExtension main.wxs ui.wxs
"%WIXDIR%\light.exe" -out bin\apk-editor-studio_%VERSION%.msi -pdbout bin\apk-editor-studio.wixpdb -ext WixUIExtension obj\main.wixobj obj\ui.wixobj
"%WIXDIR%\light.exe" -out bin\apk-editor-studio_win32_%VERSION%.msi -pdbout bin\apk-editor-studio.wixpdb -ext WixUIExtension obj\main.wixobj obj\ui.wixobj

copy bin\apk-editor-studio_%VERSION%.msi ..\..
copy bin\apk-editor-studio_win32_%VERSION%.msi ..\..
cd ..\..
4 changes: 2 additions & 2 deletions scripts/win32/installers/build.zip.bat
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ call ..\environment.bat

set FOLDER="APK Editor Studio v%VERSION%"

del apk-editor-studio_%VERSION%.zip
del apk-editor-studio_win32_%VERSION%.zip
rmdir /s /q %FOLDER%

xcopy /s ..\..\..\bin\win32 %FOLDER%\

"%SEVENZIP%" a -tzip -mx=9 apk-editor-studio_%VERSION%.zip %FOLDER%\* -xr!*.pdb
"%SEVENZIP%" a -tzip -mx=9 apk-editor-studio_win32_%VERSION%.zip %FOLDER%\* -xr!*.pdb

rmdir /s /q %FOLDER%

0 comments on commit c27e8ef

Please sign in to comment.