From 3ab581a0c436057ae97e17f8d75a348724bd190e Mon Sep 17 00:00:00 2001 From: Jack-Benny Persson Date: Sun, 9 Jun 2013 18:06:38 +0200 Subject: [PATCH] Ooops, delete the ; from the next if statement --- automysqlbackup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/automysqlbackup.sh b/automysqlbackup.sh index 4347332..0b48aae 100755 --- a/automysqlbackup.sh +++ b/automysqlbackup.sh @@ -319,7 +319,7 @@ if [ "${EVENTS}" = "yes" ]; fi # Add --max_allowed_packet=... mysqldump option to ${OPT} -if [ "${MAX_ALLOWED_PACKET}" ] +if [ "${MAX_ALLOWED_PACKET}" ]; then OPT="${OPT} --max_allowed_packet=${MAX_ALLOWED_PACKET}" fi