mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-10-03 01:39:37 +02:00
6 lines
127 B
Bash
Executable file
6 lines
127 B
Bash
Executable file
#!/bin/bash
|
|
|
|
for i in $(seq 1 6); do
|
|
printf "use peertube-test%s;\ndb.dropDatabase();" "$i" | mongo
|
|
rm -rf "./test$i"
|
|
done
|