2018-07-27 16:08:14 +03:00
|
|
|
#!/bin/bash
|
2018-09-25 20:45:08 +03:00
|
|
|
set -e
|
2018-07-27 19:44:01 +03:00
|
|
|
|
2019-10-09 18:37:41 +03:00
|
|
|
BASE_DIR=$(cd $(dirname $0) && pwd)
|
|
|
|
pushd $BASE_DIR
|
2019-10-09 18:37:57 +03:00
|
|
|
|
|
|
|
if [ ! -d "synapse/installations" ] || [ ! -d "node_modules" ]; then
|
2019-10-18 15:33:32 +03:00
|
|
|
echo "Please first run $BASE_DIR/install.sh"
|
2019-10-09 18:37:57 +03:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2019-10-09 17:59:00 +03:00
|
|
|
has_custom_riot=$(node has_custom_riot.js $@)
|
|
|
|
|
2019-10-09 18:37:57 +03:00
|
|
|
if [ ! -d "riot/riot-web" ] && [ $has_custom_riot -ne "1" ]; then
|
2019-10-18 15:33:42 +03:00
|
|
|
echo "Please provide an instance of riot to test against by passing --riot-url <url> or running $BASE_DIR/riot/install.sh"
|
2019-10-09 18:37:57 +03:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2018-07-27 19:44:01 +03:00
|
|
|
stop_servers() {
|
2019-10-09 17:59:00 +03:00
|
|
|
if [ $has_custom_riot -ne "1" ]; then
|
|
|
|
./riot/stop.sh
|
|
|
|
fi
|
|
|
|
./synapse/stop.sh
|
2018-07-27 19:44:01 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
handle_error() {
|
|
|
|
EXIT_CODE=$?
|
|
|
|
stop_servers
|
|
|
|
exit $EXIT_CODE
|
|
|
|
}
|
|
|
|
|
|
|
|
trap 'handle_error' ERR
|
|
|
|
|
2018-07-27 17:01:54 +03:00
|
|
|
./synapse/start.sh
|
2019-10-09 17:59:00 +03:00
|
|
|
if [ $has_custom_riot -ne "1" ]; then
|
|
|
|
./riot/start.sh
|
|
|
|
fi
|
2018-09-19 11:56:39 +03:00
|
|
|
node start.js $@
|
2018-07-27 19:44:01 +03:00
|
|
|
stop_servers
|