Skip to content

Commit

Permalink
Fix dump
Browse files Browse the repository at this point in the history
  • Loading branch information
nickygerritsen committed Oct 27, 2023
1 parent 6637cd1 commit 524d16a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion provision-contest/ansible/roles/mysql_server/files/dump-db
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ if [ -f "/home/domjudge/db-dumps/${1}.sql.gz" ]; then
while true; do
read -p "Overwrite existing database dump (y/N)? " yn
case $yn in
[Yy]* ) create_database_dump $1; exit 0;
[Yy]* ) create_database_dump $1; exit 0;;
''|[Nn]* ) break;;
esac
done
Expand Down

0 comments on commit 524d16a

Please sign in to comment.