aboutsummaryrefslogtreecommitdiffhomepage
path: root/bin/clean_test.sh
diff options
context:
space:
mode:
Diffstat (limited to 'bin/clean_test.sh')
-rwxr-xr-xbin/clean_test.sh8
1 files changed, 8 insertions, 0 deletions
diff --git a/bin/clean_test.sh b/bin/clean_test.sh
new file mode 100755
index 000000000..ef146e091
--- /dev/null
+++ b/bin/clean_test.sh
@@ -0,0 +1,8 @@
1#!/bin/bash
2
3basePath=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )
4
5for i in $(seq 1 6); do
6 printf "use peertube-test%s;\ndb.dropDatabase();" "$i" | mongo
7 rm -rf "$basePath/../test$i"
8done