mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-09 17:23:53 +01:00
20 lines
438 B
Bash
Executable File
20 lines
438 B
Bash
Executable File
#!/bin/sh
|
|
|
|
mkdir -p .package/dist/src/ThirdParty || true
|
|
mkdir -p .package/src/ThirdParty || true
|
|
mkdir -p .package/node_modules || true
|
|
|
|
cp index.html .package
|
|
cp -r electron/* .package
|
|
cp -r dist/ext .package/dist
|
|
|
|
# The css files
|
|
cp dist/vendor.css .package/dist
|
|
cp main.css .package/main.css
|
|
|
|
# The js files.
|
|
cp dist/vendor.bundle.js .package/dist/vendor.bundle.js
|
|
cp main.bundle.js .package/main.bundle.js
|
|
|
|
npm run electron:packager
|