mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2024-10-30 11:52:24 +03:00
ecef65b605
project)
9 lines
198 B
Bash
Executable File
9 lines
198 B
Bash
Executable File
#!/bin/bash
|
|
|
|
basePath=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )
|
|
|
|
for i in $(seq 1 6); do
|
|
printf "use peertube-test%s;\ndb.dropDatabase();" "$i" | mongo
|
|
rm -rf "$basePath/../test$i"
|
|
done
|