Skip to content

Commit

Permalink
Force files to be updated, even if newer (#1488117)
Browse files Browse the repository at this point in the history
  • Loading branch information
thomascube committed Oct 6, 2011
1 parent e9c47c6 commit 373b112
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions 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)
Expand Down
4 changes: 2 additions & 2 deletions bin/installto.sh
Expand Up @@ -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;
}
Expand Down

0 comments on commit 373b112

Please sign in to comment.