1
0
mirror of https://github.com/qTox/qTox.git synced 2024-03-22 14:00:36 +08:00

chore(windows): add architecture to installer's and zip's filenames

Since those are the filenames that will be used in the releases
This commit is contained in:
Maxim Biro 2018-04-02 15:31:29 -04:00
parent 0bb35e28e8
commit 9525505bff

View File

@ -1213,7 +1213,7 @@ set -e
# Create zip
cd $QTOX_PREFIX_DIR
zip qtox-"$ARCH".zip -r *
zip qtox-"$ARCH"-"$BUILD_TYPE".zip -r *
cd -
# Create installer
@ -1235,7 +1235,7 @@ then
makensis qtox64.nsi
fi
cp setup-qtox.exe $QTOX_PREFIX_DIR/setup-qtox-"$ARCH".exe
cp setup-qtox.exe $QTOX_PREFIX_DIR/setup-qtox-"$ARCH"-"$BUILD_TYPE".exe
cd ..
fi