From: Arash Rouhani Date: Tue, 29 Nov 2016 15:50:32 +0000 (+0700) Subject: Better ~/.env_auth deprecation hint (#51) X-Git-Url: http://www.git.stargrave.org/?a=commitdiff_plain;h=0ad53b6ee6bf678c6ad81d4898c4eb41717b89e8;p=zsh-autoenv.git Better ~/.env_auth deprecation hint (#51) Don't print the dot so it's easier to copy and paste. --- diff --git a/autoenv.zsh b/autoenv.zsh index 4df3f53..b6863cb 100644 --- a/autoenv.zsh +++ b/autoenv.zsh @@ -16,7 +16,7 @@ if [[ -z $AUTOENV_AUTH_FILE ]]; then fi if [[ -f ~/.env_auth ]]; then echo "zsh-autoenv: using deprecated location for AUTOENV_AUTH_FILE." >&2 - echo "Please move it: mv ~/.env_auth ${(D)AUTOENV_AUTH_FILE}." >&2 + echo "Please move it: mv ~/.env_auth ${(D)AUTOENV_AUTH_FILE}" >&2 AUTOENV_AUTH_FILE=~/.env_auth fi fi