mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-10 17:53:55 +01:00
cec5f1ce29
Also enables bash strict mode flags for the build script
23 lines
390 B
Bash
23 lines
390 B
Bash
#!/bin/sh
|
|
|
|
set -euxo pipefail
|
|
|
|
# Clear out any files remaining from old builds
|
|
rm -rf .package
|
|
|
|
mkdir -p .package/dist/ || true
|
|
|
|
cp index.html .package
|
|
cp favicon.ico .package
|
|
cp -r electron/* .package
|
|
cp -r dist .package
|
|
|
|
# Install electron sub-dependencies
|
|
cd electron
|
|
npm install
|
|
cd ..
|
|
|
|
BUILD_PLATFORM="${1:-"all"}"
|
|
# And finally build the app.
|
|
npm run electron:packager-$BUILD_PLATFORM
|