Remove duplicate npm install and build steps in production scripts

This commit is contained in:
wiz
2020-05-26 21:52:50 +09:00
parent 9af0015c22
commit b9d9875e98
2 changed files with 1 additions and 2 deletions

View File

@@ -2,7 +2,7 @@
for site in mainnet liquid testnet
do
cd "${HOME}/${site}/backend/"
screen -dmS "${site}" sh -c 'while true;do npm run production;sleep 1;done'
screen -dmS "${site}" sh -c 'while true;do npm run start;sleep 1;done'
done
#cd "${HOME}/webhook/"