From: martin f. krafft Date: Sat, 10 May 2008 00:21:03 +0000 (+0100) Subject: check for ssh auth agent X-Git-Url: https://git.madduck.net/etc/mrsetup.git/commitdiff_plain/f2cc227e95530303ac6407fa15039eab9cbd771a check for ssh auth agent --- diff --git a/mrsetup b/mrsetup index ca453ae..41173f9 100755 --- a/mrsetup +++ b/mrsetup @@ -19,24 +19,29 @@ MR_FGIT=.fgits/mr.git MR=.mr BIN_DIR=.bin +if [ -z "$SSH_AUTH_SOCK" ]; then + echo E: '$SSH_AUTH_SOCK' is not set. >&2 + exit 1 +fi + if [ ! -x "$(command -v git)" ]; then echo E: git is not installed. >&2 - exit 1 + exit 2 fi if [ -e .mrconfig ]; then echo E: .mrconfig already exists. >&2 - exit 2 + exit 3 fi if [ -d "$MR_FGIT" ]; then echo E: "$MR_FGIT" already exists. >&2 - exit 3 + exit 4 fi if [ -d ".git" ]; then echo E: .git already exists. >&2 - exit 3 + exit 5 fi if [ -d code/mr ]; then @@ -44,7 +49,7 @@ if [ -d code/mr ]; then echo W: code/mr already exists, let us hope for the best... >&2 else echo E: code/mr already exists. >&2 - exit 4 + exit 6 fi else echo I: cloning mr into ${MR_CODE}...