From 4df0af857187aaf30bffcf3032a8ad4d2a095058 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Antoine=20Beaupr=C3=A9?= Date: Tue, 7 Oct 2008 16:49:05 +0000 Subject: [PATCH] call mysql properly in upgrade_check so that upgrade scripts are called properly Closes: #1078 --- install/upgrade_check.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/upgrade_check.sh b/install/upgrade_check.sh index 02b8699e..0e6ef7ae 100755 --- a/install/upgrade_check.sh +++ b/install/upgrade_check.sh @@ -45,7 +45,7 @@ do # run the proper program to interpret the upgrade script case "$ext" in sql) - mysql -f --defaults-file=/etc/alternc/my.cnf \ + mysql --defaults-file=/etc/alternc/my.cnf -f \ < $file || true ;; php)