summaryrefslogtreecommitdiffstats
path: root/db-functions
diff options
context:
space:
mode:
authorFrancois Charette <francois@samarqand.localdomain>2009-05-12 11:48:12 +0200
committerAaron Griffin <aaronmgriffin@gmail.com>2009-05-12 22:04:14 +0200
commita7e949c0779787e3677178363b664960346449d5 (patch)
tree05768d84e80f8c4868a3a012cf1b103d4e3fb15f /db-functions
parentb65fd05078fab48c4352609b2d7befa118a75b0f (diff)
downloaddbscripts-a7e949c0779787e3677178363b664960346449d5.tar.gz
dbscripts-a7e949c0779787e3677178363b664960346449d5.tar.xz
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-functions4
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"