diff options
Diffstat (limited to 'scripts/clean_test.sh')
-rwxr-xr-x | scripts/clean_test.sh | 4 |
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 | ||
3 | basePath=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd ) | ||
4 | |||
3 | for i in $(seq 1 6); do | 5 | for 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" |
6 | done | 8 | done |