From c26daa63f0f1e5cdddb85b311f006de41b4525f0 Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Thu, 11 Oct 2007 01:07:32 -0400 Subject: [PATCH] improve error messages --- mr | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mr b/mr index 2932ea3..e1c8a06 100755 --- a/mr +++ b/mr @@ -334,7 +334,7 @@ update = \ elif [ -d .git ]; then \ git pull origin master; \ else \ - echo "mr update: unknown RCS"; \ + echo "mr update: unknown repo type"; \ exit 1; \ fi status = \ @@ -343,7 +343,7 @@ status = \ elif [ -d .git ]; then \ git status || true; \ else \ - echo "mr status: unknown RCS"; \ + echo "mr status: unknown repo type"; \ exit 1; \ fi commit = \ @@ -353,6 +353,6 @@ commit = \ git commit -a "$@"; \ git push --all; \ else \ - echo "mr commit: unknown RCS"; \ + echo "mr commit: unknown repo type"; \ exit 1; \ fi -- 2.39.2