Skip to content

Commit

Permalink
filter-branch: added missing warn function
Browse files Browse the repository at this point in the history
--tag-name-filter may have failed before because
warn is used for reporting but was not available.

Signed-off-by: Steffen Prohaska <prohaska@zib.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
  • Loading branch information
Steffen Prohaska authored and Junio C Hamano committed Jul 4, 2007
1 parent 49aba0b commit b5669a0
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions git-filter-branch.sh
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ set -e
USAGE="git-filter-branch [-d TEMPDIR] [FILTERS] DESTBRANCH [REV-RANGE]"
. git-sh-setup

warn () {
echo "$*" >&2
}

map()
{
# if it was not rewritten, take the original
Expand Down

0 comments on commit b5669a0

Please sign in to comment.