including the missing python command

the python command is missing at line 21 .
This commit is contained in:
ruban 2017-08-29 14:06:49 +10:00 committed by GitHub
parent 937def0caa
commit b8c839920d
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ start() {
echo -n "Already running !" && warning echo -n "Already running !" && warning
echo echo
else else
nohup ${CMD} >/dev/null 2>&1 & nohup python ${CMD} >/dev/null 2>&1 &
RETVAL=$? RETVAL=$?
PID=$! PID=$!
[ $RETVAL -eq 0 ] && success || failure [ $RETVAL -eq 0 ] && success || failure