We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents eb5d42c + d1cc3d6 commit 5f2ec23Copy full SHA for 5f2ec23
share/github-backup-utils/ghe-rsync
@@ -14,7 +14,7 @@ set -o pipefail
14
# stderr (rsync versions >= 3.x). The complex redirections are necessary to
15
# filter stderr while also keeping stdout and stderr separated.
16
IGNOREOUT='^(file has vanished: |rsync warning: some files vanished before they could be transferred)'
17
-(rsync $GHE_EXTRA_RSYNC_OPTS "${@}" 3>&1 1>&2 2>&3 3>&- |
+(rsync "${@}" $GHE_EXTRA_RSYNC_OPTS 3>&1 1>&2 2>&3 3>&- |
18
(egrep -v "$IGNOREOUT" || true)) 3>&1 1>&2 2>&3 3>&- |
19
(egrep -v "$IGNOREOUT" || true)
20
res=$?
0 commit comments