Navigation Menu

Skip to content

Commit

Permalink
Show progress on rsync
Browse files Browse the repository at this point in the history
  • Loading branch information
kou committed Apr 28, 2012
1 parent adaeb70 commit a4aa74d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions packages/apt/Makefile.am
Expand Up @@ -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

Expand All @@ -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
Expand Down
4 changes: 2 additions & 2 deletions packages/yum/Makefile.am
Expand Up @@ -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

Expand All @@ -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

Expand Down

0 comments on commit a4aa74d

Please sign in to comment.