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.
13 lines
515 B
13 lines
515 B
#!/bin/bash
|
|
### Build script for Iguana application for Windows x64 platform.
|
|
### Created by mmaxian, 3/2017
|
|
|
|
[ -z $AGAMA_VERSION ] && echo "AGAMA_VERSION variable is not set." && exit 0
|
|
|
|
echo "Build script for Iguana application for Windows x64 platform."
|
|
echo "Preparing electron package $AGAMA_VERSION"
|
|
|
|
electron-packager . --platform=win32 --arch=x64 \
|
|
--icon=assets/icons/iguana_app_icon.ico \
|
|
--out=build/ --buildVersion=$AGAMA_VERSION \
|
|
--ignore=assets/bin/osx --ignore=assets/bin/linux64 --overwrite
|