From e1c8e6cd4f50b3290c370a6c2988ead87968c668 Mon Sep 17 00:00:00 2001 From: Michael Prokop Date: Wed, 29 Aug 2012 18:22:05 +0000 Subject: [PATCH] Make both mysqldump command lines do the same doesn't make a pratical difference, but it's bad style... From: Michael Prokop --- deployment.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deployment.sh b/deployment.sh index a1af0a4..e9b3fb8 100755 --- a/deployment.sh +++ b/deployment.sh @@ -1285,7 +1285,7 @@ upload_db_dump() { # actually dumping it for committing it to VCS we need to dump it once without # the "--skip-comments" option, do the check on that and then really dump it # later... - if ! chroot $TARGET mysqldump --add-drop-database --no-data -B $databases > /dump.db ; then + if ! chroot $TARGET mysqldump --add-drop-database --skip-comments -B $databases > /dump.db ; then echo "Error while dumping mysql databases." >&2 exit 1 fi