1
0
mirror of https://github.com/Tarrasch/zsh-autoenv.git synced 2024-06-17 07:10:10 +03:00

Rename $_autoenv_this_dir to $_autoenv_source_dir

This commit is contained in:
Daniel Hahler 2014-11-24 20:19:25 +01:00
parent 869e679b79
commit 04e44f8244

View File

@ -152,7 +152,7 @@ _autoenv_check_authorized_env_file() {
} }
# Get directory of this file (absolute, with resolved symlinks). # Get directory of this file (absolute, with resolved symlinks).
_autoenv_this_dir=${0:A:h} _autoenv_source_dir=${0:A:h}
_autoenv_source() { _autoenv_source() {
local env_file=$1 local env_file=$1
@ -164,7 +164,7 @@ _autoenv_source() {
# Source varstash library once. # Source varstash library once.
if [[ -z "$functions[(I)autostash]" ]]; then if [[ -z "$functions[(I)autostash]" ]]; then
source $_autoenv_this_dir/lib/varstash source $_autoenv_source_dir/lib/varstash
# NOTE: Varstash uses $PWD as default for varstash_dir, we might set it to # NOTE: Varstash uses $PWD as default for varstash_dir, we might set it to
# ${env_file:h}. # ${env_file:h}.
fi fi