From: Johannes Schindelin Date: Thu, 28 Jul 2005 14:48:13 +0000 (+0200) Subject: [PATCH] remove "-r" option to xargs X-Git-Tag: v0.99.3~41 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/bd6bc56d4ebf04113657647e6d071e24ca708dad?hp=--cc [PATCH] remove "-r" option to xargs git-prune-script still contained that non-portable option. Signed-off-by: Johannes Schindelin Signed-off-by: Junio C Hamano --- bd6bc56d4ebf04113657647e6d071e24ca708dad diff --git a/git-prune-script b/git-prune-script index 2c678f26a4..a8e338c488 100755 --- a/git-prune-script +++ b/git-prune-script @@ -20,6 +20,6 @@ sed -ne '/unreachable /{ s|\(..\)|\1/|p }' | { cd "$GIT_OBJECT_DIRECTORY" || exit - xargs -r $dryrun rm -f + xargs $dryrun rm -f }