From: Fredrik Kuivinen Date: Sat, 6 Jan 2007 10:40:06 +0000 (+0100) Subject: instaweb: Nicer error message when the http daemon isn't found X-Git-Tag: v1.5.0-rc1~80 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=f281e3a1c5948b7dbe2fb47731376506ba3c8c38;p=git.git instaweb: Nicer error message when the http daemon isn't found Signed-off-by: Fredrik Kuivinen Signed-off-by: Junio C Hamano --- diff --git a/git-instaweb.sh b/git-instaweb.sh index 08362f43c..80adc8307 100755 --- a/git-instaweb.sh +++ b/git-instaweb.sh @@ -53,6 +53,9 @@ start_httpd () { return fi done + echo "$httpd_only not found. Install $httpd_only or use" \ + "--httpd to specify another http daemon." + exit 1 fi if test $? != 0; then echo "Could not execute http daemon $httpd."