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.
15 lines
758 B
15 lines
758 B
8 years ago
|
#!/bin/bash
|
||
|
### Build script for Iguana application for Linux x32 and x64 platform.
|
||
|
### Created by mmaxian, 3/2017
|
||
|
|
||
8 years ago
|
echo "Build script for Iguana application for Linux x32 and x64 platform."
|
||
|
echo "Preparing electron package $IGUANA_VERSION" && \
|
||
|
electron-packager . --platform=linux --arch=x32 \
|
||
|
--icon=assets/icons/iguana_app_icon_png/128x128.png \
|
||
|
--out=build/ --buildVersion=$IGUANA_VERSION \
|
||
|
--ignore=assets/bin/win64 --ignore=assets/bin/osx --overwrite && \
|
||
8 years ago
|
electron-packager . --platform=linux --arch=x64 \
|
||
|
--icon=assets/icons/iguana_app_icon_png/128x128.png \
|
||
8 years ago
|
--out=build/ --buildVersion=$IGUANA_VERSION \
|
||
8 years ago
|
--ignore=assets/bin/win64 --ignore=assets/bin/osx --overwrite || \
|
||
8 years ago
|
echo "PROBLEM: Did you call script with IGUANA_VERSION variable?"
|