mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-18 21:53:50 +01:00
14 lines
258 B
Bash
14 lines
258 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
# builds the game in the root folder
|
||
|
webpack --mode production
|
||
|
|
||
|
# Clear out any files remaining from old builds and recreate folder
|
||
|
rm -rf .app
|
||
|
mkdir .app
|
||
|
|
||
|
# Should be all the files needed.
|
||
|
cp index.html .app
|
||
|
cp favicon.ico .app
|
||
|
cp -r dist .app
|