summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWayne Davison <wayne@opencoder.net>2022-10-06 22:18:48 -0700
committerWayne Davison <wayne@opencoder.net>2022-10-06 22:18:48 -0700
commit6ba434de5c886b32103e6c265fe88c17e78945ee (patch)
tree2267670e3df6779cdcf7450af855d17af0a1d226
parent329635144238974129454de51161c1c0ba27a60a (diff)
downloadrsync-6ba434de5c886b32103e6c265fe88c17e78945ee.tar.gz
Change fgrep to grep.
-rw-r--r--packaging/pkglib.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/packaging/pkglib.py b/packaging/pkglib.py
index 6f5557aa..c4c5741d 100644
--- a/packaging/pkglib.py
+++ b/packaging/pkglib.py
@@ -176,7 +176,7 @@ def mandate_gensend_hook():
print('Creating hook file:', hook)
cmd_chk(['./rsync', '-a', 'packaging/pre-push', hook])
else:
- ct = cmd_txt(['fgrep', 'make gensend', hook], discard='output')
+ ct = cmd_txt(['grep', 'make gensend', hook], discard='output')
if ct.rc:
die('Please add a "make gensend" into your', hook, 'script.')