From e6116d96abb6551ed4c77e6713a7fd7ca24ff3b6 Mon Sep 17 00:00:00 2001 From: Jordan Harband Date: Sat, 21 Sep 2013 12:58:01 -0700 Subject: [PATCH] Mentioning `install-gitless.sh` in the "no git" error message - finishing off #246. --- install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install.sh b/install.sh index 66408f2..df9ac7a 100755 --- a/install.sh +++ b/install.sh @@ -3,8 +3,8 @@ NVM_DIR="$HOME/.nvm" if ! hash git 2>/dev/null; then - echo >&2 "You need to install git." - echo >&2 "Visit http://git-scm.com/downloads" + echo >&2 "You need to install git - visit http://git-scm.com/downloads" + echo >&2 "or, use install-gitless.sh instead." exit 1 fi