1
0
Fork 0
peertube/scripts/clean/server/test.sh

10 lines
197 B
Bash
Raw Normal View History

#!/usr/bin/env sh
for i in $(seq 1 6); do
2016-12-11 20:50:51 +00:00
dropdb "peertube_test$i"
rm -rf "./test$i"
rm -f "./config/local-test.json"
rm -f "./config/local-test-$i.json"
2016-12-11 20:50:51 +00:00
createdb "peertube_test$i"
done