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.

11 lines
504 B

#!/bin/bash
### Build script for Iguana application for MacOS platform.
### Created by mmaxian, 3/2017
echo "Build script for Iguana application for MacOS platform."
echo "Preparing electron package $IGUANA_VERSION" && \
electron-packager . --platform=darwin --arch=x64 \
--icon=assets/icons/iguana_app_icon.icns \
--out=build/ --buildVersion=$IGUANA_VERSION \
--ignore=assets/bin/win64 --ignore=assets/bin/linux64 --overwrite || \
echo "PROBLEM: Did you call script with IGUANA_VERSION variable?"