[PATCH] Improve the compilation-time settings interface
[git.git] / git-prune-script
index 9764668..a8e338c 100755 (executable)
@@ -14,12 +14,12 @@ do
     shift;
 done
 
-git-fsck-cache --cache --unreachable "$@" |
+git-fsck-cache --full --cache --unreachable "$@" |
 sed -ne '/unreachable /{
     s/unreachable [^ ][^ ]* //
     s|\(..\)|\1/|p
 }' | {
        cd "$GIT_OBJECT_DIRECTORY" || exit
-       xargs -r $dryrun rm -f
+       xargs $dryrun rm -f
 }