summaryrefslogtreecommitdiff
path: root/bin/installto.sh
diff options
context:
space:
mode:
authorThomas Bruederli <thomas@roundcube.net>2014-01-29 12:27:12 +0100
committerThomas Bruederli <thomas@roundcube.net>2014-01-29 12:27:12 +0100
commitf5007eca741477bf98354a351f7f7cfb9786adcb (patch)
tree1237e2079aac4d9d2c28a9826209b56d67c9dc0a /bin/installto.sh
parent4ae28ff09fc6896ad35f824b8f63baa4cc10956b (diff)
Invoke update scripts with php command directly (#1489322)
Diffstat (limited to 'bin/installto.sh')
-rwxr-xr-xbin/installto.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/installto.sh b/bin/installto.sh
index 269a5dc06..fbd951bdf 100755
--- a/bin/installto.sh
+++ b/bin/installto.sh
@@ -71,7 +71,7 @@ if (strtolower($input) == 'y') {
if (!$err) {
echo "Running update script at target...\n";
- system("cd $target_dir && bin/update.sh --version=$oldversion");
+ system("cd $target_dir && php bin/update.sh --version=$oldversion");
echo "All done.\n";
}
}