mirror of
https://github.com/element-hq/element-web
synced 2024-11-28 04:21:57 +03:00
12 lines
No EOL
232 B
Bash
Executable file
12 lines
No EOL
232 B
Bash
Executable file
#!/bin/bash
|
|
BASE_DIR=$(readlink -f $(dirname $0))
|
|
cd $BASE_DIR
|
|
cd installations/consent
|
|
source env/bin/activate
|
|
LOGFILE=$(mktemp)
|
|
./synctl start 2> $LOGFILE
|
|
EXIT_CODE=$?
|
|
if [ $EXIT_CODE -ne 0 ]; then
|
|
cat $LOGFILE
|
|
fi
|
|
exit $EXIT_CODE |