X-Git-Url: https://git.madduck.net/etc/mrsetup.git/blobdiff_plain/f2cc227e95530303ac6407fa15039eab9cbd771a..5f1a4a70965b2e291b5eda074197fef47c10f701:/mrsetup?ds=sidebyside diff --git a/mrsetup b/mrsetup index 41173f9..6138043 100755 --- a/mrsetup +++ b/mrsetup @@ -19,7 +19,7 @@ MR_FGIT=.fgits/mr.git MR=.mr BIN_DIR=.bin -if [ -z "$SSH_AUTH_SOCK" ]; then +if [ -z "${SSH_AUTH_SOCK:-}" ]; then echo E: '$SSH_AUTH_SOCK' is not set. >&2 exit 1 fi @@ -101,8 +101,14 @@ else git add .mrconfig git commit -m'initial checkin' git push --all + echo fi -[ -f "$0" ] && rm $0 +rm -f "$0" + +echo I: spawning a shell... +$SHELL --interactive --login + +echo I: back from the shell. exit 0