Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/roundcube/roundcubemail.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorAleksander Machniak <alec@alec.pl>2019-12-21 10:50:18 +0300
committerAleksander Machniak <alec@alec.pl>2019-12-21 10:50:18 +0300
commitf6107075540fc5aff682c59a66d2ca88cca9d862 (patch)
treef670e21598d7df3f7c7d7b0c0da85e6326dc78ff /bin
parentdf2acc5eb8620c6d574a1e0223a9732f3be267f0 (diff)
Skip install-jsdeps.sh execution when using "complete" package to update "custom" installation (#7087)
Diffstat (limited to 'bin')
-rwxr-xr-xbin/installto.sh9
1 files changed, 7 insertions, 2 deletions
diff --git a/bin/installto.sh b/bin/installto.sh
index 46879f668..62ab5cfbb 100755
--- a/bin/installto.sh
+++ b/bin/installto.sh
@@ -110,8 +110,13 @@ if (strtolower($input) == 'y') {
echo "done.\n\n";
}
+ // Warn about situation when using "complete" package to update "custom" installation (#7087)
+ // Note: "Complete" package do not include jsdeps.json nor install-jsdeps.sh
+ if (file_exists("$target_dir/jsdeps.json") && !file_exists(INSTALL_PATH . "jsdeps.json")) {
+ $adds[] = "WARNING: JavaScript dependencies update skipped.";
+ }
// check if js-deps are up-to-date
- if (file_exists("$target_dir/jsdeps.json") && file_exists("$target_dir/bin/install-jsdeps.sh")) {
+ else if (file_exists("$target_dir/jsdeps.json") && file_exists("$target_dir/bin/install-jsdeps.sh")) {
$jsdeps = json_decode(file_get_contents("$target_dir/jsdeps.json"));
$package = $jsdeps->dependencies[0];
$dest_file = $target_dir . '/' . $package->dest;
@@ -123,7 +128,7 @@ if (strtolower($input) == 'y') {
}
}
else {
- $adds[] = "NOTICE: JavaScript dependencies installation skipped...";
+ $adds[] = "NOTICE: JavaScript dependencies installation skipped.";
}
if (file_exists("$target_dir/installer")) {