summaryrefslogtreecommitdiff
path: root/git-prune-script
diff options
context:
space:
mode:
authorJohannes Schindelin <Johannes.Schindelin@gmx.de>2005-07-28 14:48:13 (GMT)
committerJunio C Hamano <junkio@cox.net>2005-07-29 07:12:02 (GMT)
commitbd6bc56d4ebf04113657647e6d071e24ca708dad (patch)
tree07770c5ccd6434e15045c08ef598f878a7cc1789 /git-prune-script
parentb614e3d75730490180f9271cec714a4a8c721636 (diff)
downloadgit-bd6bc56d4ebf04113657647e6d071e24ca708dad.zip
git-bd6bc56d4ebf04113657647e6d071e24ca708dad.tar.gz
git-bd6bc56d4ebf04113657647e6d071e24ca708dad.tar.bz2
[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>
Diffstat (limited to 'git-prune-script')
-rwxr-xr-xgit-prune-script2
1 files changed, 1 insertions, 1 deletions
diff --git a/git-prune-script b/git-prune-script
index 2c678f2..a8e338c 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
}