diff options
author | Thomas Bruederli <thomas@roundcube.net> | 2012-08-05 14:01:22 +0200 |
---|---|---|
committer | Thomas Bruederli <thomas@roundcube.net> | 2012-08-05 14:01:45 +0200 |
commit | 79209a67b0f56f8479d4319a2b8fdec8eda8ed6f (patch) | |
tree | 853dc91a84a6655793edcf542bf24916c595d2e6 /bin/update.sh | |
parent | ab78cfd0024bf6261e253123ce8332ddb0088640 (diff) |
Update installto/update script to remove old default skins and copy all necessary files; repeat notice about missing config options after auto-update
Diffstat (limited to 'bin/update.sh')
-rwxr-xr-x | bin/update.sh | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/bin/update.sh b/bin/update.sh index 46874ebf8..9c71be2b7 100755 --- a/bin/update.sh +++ b/bin/update.sh @@ -114,6 +114,12 @@ if ($RCI->configured) { if ($write1 && $write2) { echo "Done.\n"; echo "Your configuration files are now up-to-date!\n"; + + if ($messages['missing']) { + echo "But you still need to add the following missing options:\n"; + foreach ($messages['missing'] as $msg) + echo "- '" . $msg['prop'] . ($msg['name'] ? "': " . $msg['name'] : "'") . "\n"; + } } else { echo "Failed to write config files!\n"; |