OSDN Git Service

filter-branch: Avoid an error message in the map function.
authorJohannes Sixt <J.Sixt@eudaptics.com>
Wed, 4 Jul 2007 12:08:17 +0000 (14:08 +0200)
committerJunio C Hamano <gitster@pobox.com>
Wed, 4 Jul 2007 19:41:10 +0000 (12:41 -0700)
When the map function didn't find the rewritten commit of the passed in
original id, it printed the original id, but it still fell through to
the 'cat', which failed with an error message.

Signed-off-by: Johannes Sixt <johannes.sixt@telecom.at>
Acked-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
git-filter-branch.sh

index 22fb5bf..5fa9b61 100644 (file)
@@ -16,8 +16,12 @@ USAGE="git-filter-branch [-d TEMPDIR] [FILTERS] DESTBRANCH [REV-RANGE]"
 map()
 {
        # if it was not rewritten, take the original
-       test -r "$workdir/../map/$1" || echo "$1"
-       cat "$workdir/../map/$1"
+       if test -r "$workdir/../map/$1"
+       then
+               cat "$workdir/../map/$1"
+       else
+               echo "$1"
+       fi
 }
 
 # When piped a commit, output a script to set the ident of either