From 373b112f349e5587f0a54c6086fb6654109d3013 Mon Sep 17 00:00:00 2001 From: thomascube Date: Thu, 6 Oct 2011 08:20:11 +0000 Subject: Force files to be updated, even if newer (#1488117) --- bin/installto.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'bin/installto.sh') diff --git a/bin/installto.sh b/bin/installto.sh index b1e2956a1..47c959ad7 100755 --- a/bin/installto.sh +++ b/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