diff options
author | Francois Charette <francois@samarqand.localdomain> | 2009-05-12 11:48:12 +0200 |
---|---|---|
committer | Aaron Griffin <aaronmgriffin@gmail.com> | 2009-05-12 13:04:14 -0700 |
commit | a7e949c0779787e3677178363b664960346449d5 (patch) | |
tree | 05768d84e80f8c4868a3a012cf1b103d4e3fb15f /db-functions | |
parent | b65fd05078fab48c4352609b2d7befa118a75b0f (diff) |
fixed redirection of error msgs in get_svnpath
Signed-off-by: Aaron Griffin <aaronmgriffin@gmail.com>
Diffstat (limited to 'db-functions')
-rw-r--r-- | db-functions | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/db-functions b/db-functions index 99de756..f052bad 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}'" 2> + echo " Please check SVNREPO_${1} config setting" 2> fi echo "$repopath" |