mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-26 10:28:46 +08:00
6 lines
129 B
Bash
6 lines
129 B
Bash
BASE_DIR=$(realpath $(dirname $0))
|
|
pushd $BASE_DIR > /dev/null
|
|
PIDFILE=riot.pid
|
|
kill $(cat $PIDFILE)
|
|
rm $PIDFILE
|
|
popd > /dev/null |