# HG changeset patch # User Augie Fackler # Date 1260980996 21600 # Node ID f485c32913cd7701cfca0e812a383e441434f2d7 # Parent 1f6d35a7a197190bc5b7ec90bf0920e76123933a vcs functions: refer to hgsubversion by the real name diff --git a/.shell.d/50.vcs_functions.sh b/.shell.d/50.vcs_functions.sh --- a/.shell.d/50.vcs_functions.sh +++ b/.shell.d/50.vcs_functions.sh @@ -38,7 +38,7 @@ function svnurlof() { url=`hg -R $dir svn info 2> /dev/null | grep '^URL: ' | sed 's/URL: //'` fi if [ x"$url" = "x" ] ; then - echo -n 'No repo found (tried svn, git-svn, hgsvnclient)' + echo -n 'No repo found (tried svn, git-svn, hgsubversion)' fi echo $url }