inkstitch/bin/build-electron

28 wiersze
662 B
Bash
Executable File

#!/bin/bash
ARCH=$(python -c "import platform; n = platform.architecture()[0]; print(n)")
set -e
set -x
if [ "$BUILD" = "windows" ]; then
if [ "$ARCH" = "32bit" ]; then
args="-w --ia32"
else
args="-w --x64"
fi
elif [ "$BUILD" = "linux" ]; then
args="-l"
elif [ "$BUILD" = "osx" ]; then
cp installer_scripts/electron-entitlements.plist electron/build/
args="-m"
fi
# electron version setting on release
if [[ "$VERSION" =~ ^v[0-9][.0-9]+$ ]]; then
sed -i'' -e 's/11.99.11/'"${VERSION#v}"'/' electron/package.json
fi
cd electron
which yarn > /dev/null 2>&1 || npm install -g yarn
yarn --link-duplicates --pure-lockfile
yarn run dist ${args}