mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-26 18:38:41 +08:00
7 lines
113 B
Bash
Executable File
7 lines
113 B
Bash
Executable File
#!/bin/bash
|
|
BASE_DIR=$(readlink -f $(dirname $0))
|
|
cd $BASE_DIR
|
|
PIDFILE=riot.pid
|
|
kill $(cat $PIDFILE)
|
|
rm $PIDFILE
|