Another little patch that fixes my incorrect previous change in db-functions.
F
>From 435a28973a4eb368f57edc2b342109cf1820b668 Mon Sep 17 00:00:00 2001 From: Francois Charette <[email protected]> Date: Thu, 14 May 2009 11:23:12 +0200 Subject: [PATCH] fix redirection to stderr in get_svnpath --- db-functions | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/db-functions b/db-functions index f052bad..74d88e0 100644 --- a/db-functions +++ b/db-functions @@ -99,8 +99,8 @@ get_svnpath () { #get_svnpath reponame eval repopath=${var} if [ -z "$repopath" ]; then - echo "ERROR: SVN path not defined for '${1}'" 2> - echo " Please check SVNREPO_${1} config setting" 2> + echo "ERROR: SVN path not defined for '${1}'" > /dev/stderr + echo " Please check SVNREPO_${1} config setting" > /dev/stderr fi echo "$repopath" -- 1.6.3

