From 59787216637a7b1f9daba50227c3d426de2343c8 Mon Sep 17 00:00:00 2001 From: thomasb Date: Thu, 6 Oct 2011 08:20:11 +0000 Subject: Force files to be updated, even if newer (#1488117) git-svn-id: https://svn.roundcube.net/trunk@5311 208e9e7b-5314-0410-a742-e7e81cd9613c --- roundcubemail/CHANGELOG | 4 ++++ 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; } -- cgit v1.2.3