From 2542f22baac6cf831321ca4da5f91c16899a0de9 Mon Sep 17 00:00:00 2001 From: Michael Prokop Date: Mon, 3 Sep 2012 16:46:02 +0000 Subject: [PATCH] Remove --skip-comments from first mysqldump cmdline Fix what has been broken in r10823: the "Dump completed on" is present iff "--skip-comments" option is not used. From: Michael Prokop --- deployment.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deployment.sh b/deployment.sh index e9b3fb8..e0be39b 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 --skip-comments -B $databases > /dump.db ; then + if ! chroot $TARGET mysqldump --add-drop-database -B $databases > /dump.db ; then echo "Error while dumping mysql databases." >&2 exit 1 fi