소스 검색

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

Sebastian Wiedenroth 6 년 전
부모
커밋
fac6cd8297
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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