mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-10-04 02:09:37 +02:00
7 lines
124 B
Bash
Executable file
7 lines
124 B
Bash
Executable file
#!/usr/bin/env sh
|
|
|
|
for i in $(seq 1 6); do
|
|
dropdb "peertube_test$i"
|
|
rm -rf "./test$i"
|
|
createdb "peertube_test$i"
|
|
done
|