summary refs log tree commit diff
path: root/demo/start.sh
diff options
context:
space:
mode:
authorMark Haines <mark.haines@matrix.org>2015-04-30 16:04:02 +0100
committerMark Haines <mark.haines@matrix.org>2015-04-30 16:04:02 +0100
commit74aaacf82aa6b592b100f8b930938e67bfd99000 (patch)
treea9de859c637a0829489cb1820078a384cb5ba739 /demo/start.sh
parentAdd a random string to the auto generated key id (diff)
downloadsynapse-74aaacf82aa6b592b100f8b930938e67bfd99000.tar.xz
Don't break when sizes or durations are given as integers
Diffstat (limited to 'demo/start.sh')
-rwxr-xr-xdemo/start.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/demo/start.sh b/demo/start.sh
index ef4be2d5ff..75ff9861d8 100755
--- a/demo/start.sh
+++ b/demo/start.sh
@@ -26,9 +26,9 @@ for port in 8080 8081 8082; do
 
     https_port=$((port + 400))
     mkdir -p demo/$port
-    pushd demo/$port
+#    pushd demo/$port
 
-    rm $DIR/etc/$port.config
+    #rm $DIR/etc/$port.config
     python -m synapse.app.homeserver \
         --generate-config \
         -H "localhost:$https_port" \
@@ -39,7 +39,7 @@ for port in 8080 8081 8082; do
         -D \
         -vv \
 
-    popd
+ #   popd
 done
 
 cd "$CWD"