Parcourir la source

rsync should not try to change file ownership (#27)

Sebastian Wiedenroth il y a 6 ans
Parent
commit
fac6cd8297
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      platform-upgrade

+ 1 - 1
platform-upgrade

@@ -205,7 +205,7 @@ else
 fi
 
 echo -n "Updating platform on boot device..."
-if ! rsync -a "$platform_dir/" usb/platform.new/ ; then
+if ! rsync -rltD "$platform_dir/" usb/platform.new/ ; then
         echo " failed"
         exit -1
 else