From dde469513625c0e10216da9b6f6546aa844431f7 Mon Sep 17 00:00:00 2001 From: a1346054 <36859588+a1346054@users.noreply.github.com> Date: Sun, 26 Sep 2021 23:57:55 +0000 Subject: 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 --- support/rsync-no-vanished | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'support/rsync-no-vanished') 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 -- cgit v1.2.1