summaryrefslogtreecommitdiff
path: root/support/rsync-no-vanished
diff options
context:
space:
mode:
authora1346054 <36859588+a1346054@users.noreply.github.com>2021-09-26 23:57:55 +0000
committerGitHub <noreply@github.com>2021-09-26 16:57:55 -0700
commitdde469513625c0e10216da9b6f6546aa844431f7 (patch)
treeca4e2013323105eab83f0a13154cc8e3b8991975 /support/rsync-no-vanished
parent33379302927313f426fc561ce2c89069e265b9a3 (diff)
downloadrsync-dde469513625c0e10216da9b6f6546aa844431f7.tar.gz
Minor cleanup (#214)
- use `grep -E` and `grep -F` (`egrep` and `fgrep` are non-standard) - use same hashbang style for all test scripts - use explicit comparisons in test scripts - remove redundant ; from test scripts - make test script not executable, just like all the other scripts - unify codestyle across all test scripts - make openssl license exception clearer by having it at the top - use modern links in COPYING. The text now matches: https://www.gnu.org/licenses/gpl-3.0.txt - fix typo
Diffstat (limited to 'support/rsync-no-vanished')
-rwxr-xr-xsupport/rsync-no-vanished2
1 files changed, 1 insertions, 1 deletions
diff --git a/support/rsync-no-vanished b/support/rsync-no-vanished
index cc3c29ce..0f0bb22f 100755
--- a/support/rsync-no-vanished
+++ b/support/rsync-no-vanished
@@ -5,7 +5,7 @@ IGNOREOUT='^(file has vanished: |rsync warning: some files vanished before they
set -o pipefail
-rsync "${@}" 2>&1 | (egrep -v "$IGNOREOUT" || true)
+rsync "${@}" 2>&1 | (grep -E -v "$IGNOREOUT" || true)
ret=$?
if [[ $ret == $IGNOREEXIT ]]; then