Fix start/upgrade scripts to properly restart the backend processes

This commit is contained in:
wiz
2020-05-26 13:22:39 +09:00
parent 73fb18b929
commit 01ac06b096
2 changed files with 2 additions and 2 deletions

View File

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