dont fail when trying to stop riot and its not running
This commit is contained in:
parent
5cd52e2ebd
commit
758da78659
1 changed files with 5 additions and 2 deletions
|
@ -2,5 +2,8 @@
|
|||
BASE_DIR=$(readlink -f $(dirname $0))
|
||||
cd $BASE_DIR
|
||||
PIDFILE=riot.pid
|
||||
kill $(cat $PIDFILE)
|
||||
rm $PIDFILE
|
||||
if [ -f $PIDFILE ]; then
|
||||
echo "stopping riot server ..."
|
||||
kill $(cat $PIDFILE)
|
||||
rm $PIDFILE
|
||||
fi
|
||||
|
|
Loading…
Reference in a new issue