diff options
author | Thomas Bruederli <thomas@roundcube.net> | 2014-01-29 12:27:12 +0100 |
---|---|---|
committer | Thomas Bruederli <thomas@roundcube.net> | 2014-01-29 12:27:12 +0100 |
commit | f5007eca741477bf98354a351f7f7cfb9786adcb (patch) | |
tree | 1237e2079aac4d9d2c28a9826209b56d67c9dc0a /bin/update.sh | |
parent | 4ae28ff09fc6896ad35f824b8f63baa4cc10956b (diff) |
Invoke update scripts with php command directly (#1489322)
Diffstat (limited to 'bin/update.sh')
-rwxr-xr-x | bin/update.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/update.sh b/bin/update.sh index 8bfb9d603..9b72ef3bf 100755 --- a/bin/update.sh +++ b/bin/update.sh @@ -157,7 +157,7 @@ if ($RCI->configured) { // check database schema if ($RCI->config['db_dsnw']) { echo "Executing database schema update.\n"; - system(INSTALL_PATH . "bin/updatedb.sh --package=roundcube --version=" . $opts['version'] + system("php " . INSTALL_PATH . "bin/updatedb.sh --package=roundcube --version=" . $opts['version'] . " --dir=" . INSTALL_PATH . DIRECTORY_SEPARATOR . "SQL", $res); $success = !$res; @@ -165,7 +165,7 @@ if ($RCI->configured) { // index contacts for fulltext searching if ($opts['version'] && version_compare(version_parse($opts['version']), '0.6.0', '<')) { - system(INSTALL_PATH . 'bin/indexcontacts.sh'); + system("php " . INSTALL_PATH . 'bin/indexcontacts.sh'); } if ($success) { |