null+****@clear*****
null+****@clear*****
2012年 4月 28日 (土) 23:51:29 JST
Kouhei Sutou 2012-04-28 23:51:29 +0900 (Sat, 28 Apr 2012) New Revision: a4aa74d294a9c731ef1355545ce799e86c26b57c Log: Show progress on rsync Modified files: packages/apt/Makefile.am packages/yum/Makefile.am Modified: packages/apt/Makefile.am (+2 -2) =================================================================== --- packages/apt/Makefile.am 2012-04-28 23:47:25 +0900 (b5c44cc) +++ packages/apt/Makefile.am 2012-04-28 23:51:29 +0900 (6045091) @@ -14,7 +14,7 @@ remove-existing-packages: download: for distribution in $(DISTRIBUTIONS); do \ - rsync -avz --delete \ + rsync -avz --progress --delete \ $(RSYNC_PATH)/$${distribution}/ $${distribution}; \ done @@ -33,7 +33,7 @@ ensure-rsync-path: upload: ensure-rsync-path for distribution in $(DISTRIBUTIONS); do \ (cd $${distribution}; \ - rsync -avz --delete \ + rsync -avz --progress --delete \ dists pool $(RSYNC_PATH)/$${distribution}; \ ); \ done Modified: packages/yum/Makefile.am (+2 -2) =================================================================== --- packages/yum/Makefile.am 2012-04-28 23:47:25 +0900 (277a80c) +++ packages/yum/Makefile.am 2012-04-28 23:51:29 +0900 (583bb56) @@ -22,7 +22,7 @@ ensure-rsync-path: download: ensure-rsync-path for distribution in $(DISTRIBUTIONS); do \ - rsync -avz --delete \ + rsync -avz --progress --delete \ $(RSYNC_PATH)/$${distribution}/ $${distribution}; \ done @@ -34,7 +34,7 @@ update: upload: ensure-rsync-path for distribution in $(DISTRIBUTIONS); do \ - rsync -avz --exclude .gitignore --delete \ + rsync -avz --progress --exclude .gitignore --delete \ $${distribution}/ $(RSYNC_PATH)/$${distribution}; \ done