From 90d3b535052d954d973de1e70190597c32f987f7 Mon Sep 17 00:00:00 2001 From: Daniel Hahler Date: Thu, 27 Aug 2015 20:50:52 +0200 Subject: [PATCH] Write _autoenv_check_authorized_env_file to stderr stdout might be redirected, e.g. with "cd - >/dev/null", and this message should appear in stderr probably anyway. I've tried to add a test for this, by redirecting stdout in .zshenv, but cram does not handle this well (and appears to redirect stderr to stdout anyway). --- autoenv.zsh | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/autoenv.zsh b/autoenv.zsh index 95fc56a..0c58f34 100644 --- a/autoenv.zsh +++ b/autoenv.zsh @@ -222,16 +222,16 @@ _autoenv_check_authorized_env_file() { return 1 fi if ! _autoenv_authorized_env_file $1; then - echo "Attempting to load unauthorized env file!" - command ls -l $1 - echo "" - echo "**********************************************" - echo "" - cat $1 - echo "" - echo "**********************************************" - echo "" - echo -n "Would you like to authorize it? (type 'yes') " + echo "Attempting to load unauthorized env file!" >&2 + command ls -l $1 >&2 + echo "" >&2 + echo "**********************************************" >&2 + echo "" >&2 + cat $1 >&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