diff options
author | Daniel Wagner-Hall <daniel@matrix.org> | 2015-08-12 15:58:52 +0100 |
---|---|---|
committer | Daniel Wagner-Hall <daniel@matrix.org> | 2015-08-12 15:58:52 +0100 |
commit | bcc1d34d355d0385576f8007853e83460e52aab7 (patch) | |
tree | 2ee377fc63d589aa346be7dff4b3dd4e4b563d59 /demo/clean.sh | |
parent | Simplify LoginHander and AuthHandler (diff) | |
parent | Merge branch 'develop' of github.com:matrix-org/synapse into develop (diff) | |
download | synapse-bcc1d34d355d0385576f8007853e83460e52aab7.tar.xz |
Merge branch 'develop' into auth
Diffstat (limited to 'demo/clean.sh')
-rwxr-xr-x | demo/clean.sh | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/demo/clean.sh b/demo/clean.sh index c5dabd4767..418ca9457e 100755 --- a/demo/clean.sh +++ b/demo/clean.sh @@ -11,7 +11,9 @@ if [ -f $PID_FILE ]; then exit 1 fi -find "$DIR" -name "*.log" -delete -find "$DIR" -name "*.db" -delete +for port in 8080 8081 8082; do + rm -rf $DIR/$port + rm -rf $DIR/media_store.$port +done rm -rf $DIR/etc |