From fadddf6502310cad1ce4f9444d77ada1f6c98bee Mon Sep 17 00:00:00 2001 From: Daniel Hahler Date: Thu, 27 Aug 2015 22:58:35 +0200 Subject: [PATCH] Use shorter echo for newlines --- autoenv.zsh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/autoenv.zsh b/autoenv.zsh index d33bf85..0f499f5 100644 --- a/autoenv.zsh +++ b/autoenv.zsh @@ -224,13 +224,13 @@ _autoenv_check_authorized_env_file() { if ! _autoenv_authorized_env_file $1; then echo "Attempting to load unauthorized env file!" >&2 command ls -l $1 >&2 - echo "" >&2 + echo >&2 echo "**********************************************" >&2 - echo "" >&2 + echo >&2 command cat $1 >&2 - echo "" >&2 + echo >&2 echo "**********************************************" >&2 - echo "" >&2 + echo >&2 echo -n "Would you like to authorize it? (type 'yes') " >&2 # echo "Would you like to authorize it?" # echo "('yes' to allow, 'no' to not being asked again; otherwise ignore it for the shell) " -- 2.44.0