From 0ad53b6ee6bf678c6ad81d4898c4eb41717b89e8 Mon Sep 17 00:00:00 2001 From: Arash Rouhani Date: Tue, 29 Nov 2016 22:50:32 +0700 Subject: [PATCH] Better ~/.env_auth deprecation hint (#51) Don't print the dot so it's easier to copy and paste. --- autoenv.zsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.44.0