Avisar cuando no hay ssh-agent

This commit is contained in:
f 2021-09-28 12:54:48 -03:00
parent 1af786a9e1
commit 19aac59bdc

View file

@ -235,11 +235,15 @@ if test "$HAIN_ENV"; then
${*:-$DEFAULT} ${*:-$DEFAULT}
else else
if test -z "${SSH_AUTH_SOCK}"; then if test -z "${SSH_AUTH_SOCK}"; then
SSH_ADHOC=true if ! type ssh-agent >/dev/null 2>&1 ; then
echo "Instala ssh-agent para poder trabajar con git remoto dentro de haini.sh" >&2
else
SSH_ADHOC=true
echo "Iniciando un ssh-agent temporal, te recomendamos instalarlo en tu terminal." >&2 echo "Iniciando un ssh-agent temporal, te recomendamos instalarlo en tu terminal." >&2
eval "$(ssh-agent)" eval "$(ssh-agent)"
ssh-add ssh-add
fi
fi fi
crear_entorno crear_entorno