mirror of https://github.com/lukechilds/Agama.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
742 B
18 lines
742 B
8 years ago
|
#!/bin/bash
|
||
8 years ago
|
### Build script for Iguana application for Windows ia32 and x64 platform.
|
||
8 years ago
|
### Created by mmaxian, 3/2017
|
||
|
|
||
8 years ago
|
[ -z $AGAMA_VERSION ] && echo "AGAMA_VERSION variable is not set." && exit 0
|
||
8 years ago
|
|
||
8 years ago
|
echo "Build script for Iguana application for Windows ia32 and x64 platform."
|
||
8 years ago
|
echo "Preparing electron package $AGAMA_VERSION"
|
||
8 years ago
|
|
||
8 years ago
|
electron-packager . --platform=win32 --arch=x64 \
|
||
|
--icon=assets/icons/iguana_app_icon.ico \
|
||
8 years ago
|
--out=build/ --buildVersion=$AGAMA_VERSION \
|
||
8 years ago
|
--ignore=assets/bin/osx --ignore=assets/bin/linux64 --overwrite
|
||
|
|
||
8 years ago
|
electron-packager . --platform=win32 --arch=ia32 \
|
||
|
--icon=assets/icons/iguana_app_icon.ico \
|
||
8 years ago
|
--out=build/ --buildVersion=$AGAMA_VERSION \
|
||
8 years ago
|
--ignore=assets/bin/osx --ignore=assets/bin/linux64 --overwrite
|