1
0
mirror of https://github.com/Tarrasch/zsh-autoenv.git synced 2024-11-22 07:20:59 +02:00

Improve debug logging in _autoenv_chpwd_handler (#57)

This commit is contained in:
Daniel Hahler 2017-08-19 13:55:35 +02:00 committed by GitHub
parent b0d5ff456f
commit c3afdc151f

View File

@ -396,7 +396,7 @@ _autoenv_chpwd_handler() {
fi fi
local env_file="$PWD/$AUTOENV_FILE_ENTER" local env_file="$PWD/$AUTOENV_FILE_ENTER"
_autoenv_debug "env_file: $env_file" _autoenv_debug "looking for env_file: $env_file"
# Handle leave event for previously sourced env files. # Handle leave event for previously sourced env files.
if [[ $AUTOENV_HANDLE_LEAVE == 1 ]] && (( $#_autoenv_stack_entered )); then if [[ $AUTOENV_HANDLE_LEAVE == 1 ]] && (( $#_autoenv_stack_entered )); then
@ -422,8 +422,10 @@ _autoenv_chpwd_handler() {
if ! [[ -f $env_file ]] && [[ $AUTOENV_LOOK_UPWARDS == 1 ]]; then if ! [[ -f $env_file ]] && [[ $AUTOENV_LOOK_UPWARDS == 1 ]]; then
env_file=$(_autoenv_get_file_upwards $PWD) env_file=$(_autoenv_get_file_upwards $PWD)
if [[ -z $env_file ]]; then if [[ -z $env_file ]]; then
_autoenv_debug "No env_file found when looking upwards"
return return
fi fi
_autoenv_debug "Found env_file: $env_file"
fi fi
# Load the env file only once: check if $env_file is in the stack of entered # Load the env file only once: check if $env_file is in the stack of entered