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.octo.it/?a=commitdiff_plain;h=bd6bc56d4ebf04113657647e6d071e24ca708dad;p=git.git [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 --- diff --git a/git-prune-script b/git-prune-script index 2c678f26..a8e338c4 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 }