mirror of
https://github.com/dcarrillo/prezto.git
synced 2024-12-22 19:48:00 +00:00
rsync: Check for new rsync before applying newer options
The newer options for extended attributes or file-flags got reliable only after rsync v3.1.
This commit is contained in:
parent
261d3b8224
commit
788aa3d158
@ -20,14 +20,19 @@ pmodload 'helper'
|
|||||||
_rsync_cmd='rsync --verbose --progress --human-readable --compress --archive \
|
_rsync_cmd='rsync --verbose --progress --human-readable --compress --archive \
|
||||||
--hard-links --one-file-system'
|
--hard-links --one-file-system'
|
||||||
|
|
||||||
if grep -q 'xattrs' <(rsync --help 2>&1); then
|
autoload -Uz is-at-least
|
||||||
_rsync_cmd="${_rsync_cmd} --acls --xattrs"
|
if is-at-least 3.1 ${"$(rsync --version 2>&1)"[(w)3]}; then
|
||||||
fi
|
|
||||||
|
|
||||||
# macOS Enhancements
|
# ACL and extended attributes support
|
||||||
# https://bombich.com/kb/ccc5/credits
|
if grep -q 'xattrs' <(rsync --help 2>&1); then
|
||||||
if is-darwin && grep -q 'file-flags' <(rsync --help 2>&1); then
|
_rsync_cmd="${_rsync_cmd} --acls --xattrs"
|
||||||
_rsync_cmd="${_rsync_cmd} --crtimes --fileflags --force-change"
|
fi
|
||||||
|
|
||||||
|
# macOS Enhancements
|
||||||
|
# https://bombich.com/kb/ccc5/credits
|
||||||
|
if is-darwin && grep -q 'file-flags' <(rsync --help 2>&1); then
|
||||||
|
_rsync_cmd="${_rsync_cmd} --crtimes --fileflags --force-change"
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
alias rsync-copy="${_rsync_cmd}"
|
alias rsync-copy="${_rsync_cmd}"
|
||||||
|
Loading…
Reference in New Issue
Block a user