24
1
Fork 0

run npm install if needed in buildAssets.sh

This commit is contained in:
Danny Coates 2019-01-03 13:56:32 -08:00
parent a79400f99f
commit 5e5af03d11
No known key found for this signature in database
GPG Key ID: 4C442633C62E00CB
1 changed files with 8 additions and 2 deletions

View File

@ -1,6 +1,12 @@
#!/usr/bin/env bash
if [ -d "../../node_modules" ]
then
echo "node_modules already present."
else
echo "node_modules not present, running npm install."
npm install
fi
npm run build
rm -rf src/main/assets
mkdir -p src/main/assets
cp -R ../../dist/* src/main/assets
cp -R ../../dist/* src/main/assets