diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2018-05-23 16:25:25 +0200 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2018-05-23 16:25:25 +0200 |
commit | 6f127cc3a6d144925f22d137ca76bbbf1fd8e04f (patch) | |
tree | 5195e0be0e5dd6f5fc8934ae122e2de82ab49ec2 /push-images.sh | |
parent | f145606b6beb33c12d8c45ebbdd5ca8d6c5c33bd (diff) | |
download | imagefish-6f127cc3a6d144925f22d137ca76bbbf1fd8e04f.tar.gz |
inplace rsync
Diffstat (limited to 'push-images.sh')
-rwxr-xr-x | push-images.sh | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/push-images.sh b/push-images.sh index c2894fb..9d29d2b 100755 --- a/push-images.sh +++ b/push-images.sh @@ -20,7 +20,8 @@ fi echo echo "### rsync $count uncompressed image(s)" echo -rsync --verbose --progress $images $dest +rsync --verbose --progress --implace \ + $images $dest echo echo "### compress $count image(s)" @@ -31,6 +32,6 @@ xz --verbose --keep $images echo echo "### rsync compressed image(s)" echo -rsync --verbose --progress \ +rsync --verbose --progress --inplace \ ${IMAGEFISH_DESTDIR-.}/*.xz \ $dest |