2018-07-27 21:08:14 +08:00
|
|
|
#!/bin/bash
|
2018-09-26 01:45:08 +08:00
|
|
|
set -e
|
2018-07-28 00:44:01 +08:00
|
|
|
|
2019-10-09 22:59:00 +08:00
|
|
|
has_custom_riot=$(node has_custom_riot.js $@)
|
|
|
|
|
2018-07-28 00:44:01 +08:00
|
|
|
stop_servers() {
|
2019-10-09 22:59:00 +08:00
|
|
|
if [ $has_custom_riot -ne "1" ]; then
|
|
|
|
./riot/stop.sh
|
|
|
|
fi
|
|
|
|
./synapse/stop.sh
|
2018-07-28 00:44:01 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
handle_error() {
|
|
|
|
EXIT_CODE=$?
|
|
|
|
stop_servers
|
|
|
|
exit $EXIT_CODE
|
|
|
|
}
|
|
|
|
|
|
|
|
trap 'handle_error' ERR
|
|
|
|
|
2018-07-27 22:01:54 +08:00
|
|
|
./synapse/start.sh
|
2019-10-09 22:59:00 +08:00
|
|
|
if [ $has_custom_riot -ne "1" ]; then
|
|
|
|
./riot/start.sh
|
|
|
|
fi
|
2018-09-19 16:56:39 +08:00
|
|
|
node start.js $@
|
2018-07-28 00:44:01 +08:00
|
|
|
stop_servers
|