* [PATCH] filter-branch: added missing warn function
@ 2007-07-04 8:36 Steffen Prohaska
2007-07-04 11:21 ` Johannes Schindelin
0 siblings, 1 reply; 2+ messages in thread
From: Steffen Prohaska @ 2007-07-04 8:36 UTC (permalink / raw)
To: git; +Cc: Steffen Prohaska
--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>
---
git-filter-branch.sh | 4 ++++
1 files changed, 4 insertions(+), 0 deletions(-)
diff --git a/git-filter-branch.sh b/git-filter-branch.sh
index a2fcebc..958f28e 100644
--- a/git-filter-branch.sh
+++ b/git-filter-branch.sh
@@ -194,6 +194,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
--
1.5.2.2.647.g75b2fc
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] filter-branch: added missing warn function
2007-07-04 8:36 [PATCH] filter-branch: added missing warn function Steffen Prohaska
@ 2007-07-04 11:21 ` Johannes Schindelin
0 siblings, 0 replies; 2+ messages in thread
From: Johannes Schindelin @ 2007-07-04 11:21 UTC (permalink / raw)
To: Steffen Prohaska; +Cc: git
Hi,
On Wed, 4 Jul 2007, Steffen Prohaska wrote:
> --tag-name-filter may have failed before because
> warn is used for reporting but was not available.
Ooops. Thanks.
Ciao,
Dscho
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2007-07-04 11:21 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-07-04 8:36 [PATCH] filter-branch: added missing warn function Steffen Prohaska
2007-07-04 11:21 ` Johannes Schindelin
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).