]> Sergey Matveev's repositories - zsh-autoenv.git/commitdiff
Do not export AUTOENV_ENV_FILENAME, and use existing value
authorDaniel Hahler <git@thequod.de>
Fri, 24 Apr 2015 15:28:09 +0000 (17:28 +0200)
committerDaniel Hahler <git@thequod.de>
Fri, 24 Apr 2015 15:28:09 +0000 (17:28 +0200)
autoenv.zsh

index 772b1903195aa56f21de38535f5d5a9de09fe84f..452e5c3a224ed8da2b57316393441fcbf2806ded 100644 (file)
@@ -1,8 +1,8 @@
 # Initially based on
 # https://github.com/joshuaclayton/dotfiles/blob/master/zsh_profile.d/autoenv.zsh
 
-export AUTOENV_ENV_FILENAME=$HOME/.env_auth
-[ -e $AUTOENV_ENV_FILENAME ] || touch $AUTOENV_ENV_FILENAME
+# File to store confirmed authentication into.
+: ${AUTOENV_ENV_FILENAME:=~/.env_auth}
 
 # Name of file to look for when entering directories.
 : ${AUTOENV_FILE_ENTER:=.env}