From db78b7f941a2d3399ec9f8910c7eebe958d9838e Mon Sep 17 00:00:00 2001 From: Cas Cremers Date: Sun, 20 May 2007 16:00:41 +0200 Subject: [PATCH] - Added some further explanations for users of the dist script if the tag/arch is not found. --- dist/gitdist.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/dist/gitdist.sh b/dist/gitdist.sh index 0ba1a48..153e0d4 100755 --- a/dist/gitdist.sh +++ b/dist/gitdist.sh @@ -36,7 +36,8 @@ if [ "x$ARCH" = "xlinux" -o "x$ARCH" = "xw32" -o "x$ARCH" = "xmac" ] then echo "Architecture $ARCH detected." else - echo "Don't know architecture $ARCH" + echo "Don't know architecture $ARCH." + echo "Please use one of linux,w32,mac" exit fi @@ -46,7 +47,8 @@ if [ "x$TAG" = "x$FOUND" ] then echo "Tag $TAG found." else - echo "Don't know tag $TAG" + echo "Don't know tag $TAG, please select one from below:" + git-tag -l exit fi