Replace sources/build with top-level ./build script

This commit is contained in:
daz 2024-04-07 13:10:08 -06:00
parent ab471b0c20
commit 1105cf252a
No known key found for this signature in database
3 changed files with 10 additions and 8 deletions

10
build Executable file
View file

@ -0,0 +1,10 @@
#!/bin/bash
cd sources
npm install
if [ "$1" == "all" ]; then
npm run all
else
npm run build
fi

View file

@ -1,4 +0,0 @@
#!/bin/bash
cd sources
npm run build

View file

@ -1,4 +0,0 @@
#!/bin/bash
cd sources
npm run all