element-web/synapse/start.sh
Bruno Windels 7a15acf224 install synapse/develop (and deps) from pip
instead of getting dependencies from synapse/master
and running synapse/develop from git download
2019-06-24 12:51:43 +02:00

15 lines
276 B
Bash
Executable file

#!/bin/bash
set -e
BASE_DIR=$(cd $(dirname $0) && pwd)
cd $BASE_DIR
cd installations/consent/env/bin/
source activate
LOGFILE=$(mktemp)
echo "Synapse log file at $LOGFILE"
./synctl start 2> $LOGFILE
EXIT_CODE=$?
if [ $EXIT_CODE -ne 0 ]; then
cat $LOGFILE
fi
exit $EXIT_CODE