[PATCH] remove "-r" option to xargs

git-prune-script still contained that non-portable option.

Signed-off-by: Johannes Schindelin <Johannes.Schindelin@gmx.de>
Signed-off-by: Junio C Hamano <junkio@cox.net>
This commit is contained in:
Johannes Schindelin 2005-07-28 16:48:13 +02:00 committed by Junio C Hamano
parent b614e3d757
commit bd6bc56d4e

View File

@ -20,6 +20,6 @@ sed -ne '/unreachable /{
s|\(..\)|\1/|p
}' | {
cd "$GIT_OBJECT_DIRECTORY" || exit
xargs -r $dryrun rm -f
xargs $dryrun rm -f
}