diff options
author | Chocobozzz <florian.bigard@gmail.com> | 2015-11-24 09:53:27 +0100 |
---|---|---|
committer | Chocobozzz <florian.bigard@gmail.com> | 2015-11-24 09:53:27 +0100 |
commit | ecef65b6050f53e90e2239dd593706189ef8f03d (patch) | |
tree | bef86cf1cf9d09fd1c4c20593d28930f0cde943c /scripts/clean_test.sh | |
parent | 2dd5b570a6bb774eda2fb9b9ce7cffd0741eb0a2 (diff) | |
download | PeerTube-ecef65b6050f53e90e2239dd593706189ef8f03d.tar.gz PeerTube-ecef65b6050f53e90e2239dd593706189ef8f03d.tar.zst PeerTube-ecef65b6050f53e90e2239dd593706189ef8f03d.zip |
Add checks to the scripts (they has to be executed at the root of the
project)
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 |