move everything to subfolder to merge into react-sdk

This commit is contained in:
Bruno Windels 2019-10-09 16:52:48 +02:00
parent 6cb9ef7e65
commit ca86969f92
47 changed files with 0 additions and 0 deletions

View file

@ -0,0 +1,15 @@
#!/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