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