mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-26 18:38:41 +08:00
10 lines
176 B
Bash
Executable File
10 lines
176 B
Bash
Executable File
#!/bin/bash
|
|
BASE_DIR=$(readlink -f $(dirname $0))
|
|
cd $BASE_DIR
|
|
PIDFILE=riot.pid
|
|
if [ -f $PIDFILE ]; then
|
|
echo "stopping riot server ..."
|
|
kill $(cat $PIDFILE)
|
|
rm $PIDFILE
|
|
fi
|