diff options
| author | thomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2011-10-06 08:20:11 +0000 |
|---|---|---|
| committer | thomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2011-10-06 08:20:11 +0000 |
| commit | 59787216637a7b1f9daba50227c3d426de2343c8 (patch) | |
| tree | 89fd18802c8b16c940cb1424cb3effbec0cd04ef | |
| parent | b7da5e256bab38588a4f83ed507aafe651d03456 (diff) | |
Force files to be updated, even if newer (#1488117)
git-svn-id: https://svn.roundcube.net/trunk@5311 208e9e7b-5314-0410-a742-e7e81cd9613c
| -rw-r--r-- | roundcubemail/CHANGELOG | 4 | ||||
| -rwxr-xr-x | roundcubemail/bin/installto.sh | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/roundcubemail/CHANGELOG b/roundcubemail/CHANGELOG index bd06731e0..c5adfcb89 100644 --- a/roundcubemail/CHANGELOG +++ b/roundcubemail/CHANGELOG @@ -1,6 +1,10 @@ CHANGELOG Roundcube Webmail =========================== +- Force all files to be overwritten when updating (#1488117) + +RELEASE 0.6 +----------- - Fix issue where it wasn't possible to change list view mode in folder manager for INBOX (#1488107) - Fix namespace handling in special folders settings (#1488112) - Disable time limit for CLI scripts (#1488109) diff --git a/roundcubemail/bin/installto.sh b/roundcubemail/bin/installto.sh index b1e2956a1..47c959ad7 100755 --- a/roundcubemail/bin/installto.sh +++ b/roundcubemail/bin/installto.sh @@ -45,13 +45,13 @@ if (strtolower($input) == 'y') { $err = false; echo "Copying files to target location..."; foreach (array('program','installer','bin','SQL','plugins','skins/default') as $dir) { - if (!system("rsync -avuC " . INSTALL_PATH . "$dir/* $target_dir/$dir/")) { + if (!system("rsync -avC " . INSTALL_PATH . "$dir/* $target_dir/$dir/")) { $err = true; break; } } foreach (array('index.php','.htaccess','config/main.inc.php.dist','config/db.inc.php.dist','CHANGELOG','README','UPGRADING') as $file) { - if (!system("rsync -avu " . INSTALL_PATH . "$file $target_dir/$file")) { + if (!system("rsync -av " . INSTALL_PATH . "$file $target_dir/$file")) { $err = true; break; } |
