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

Use escaped grep command, skipping aliases

This commit is contained in:
Daniel Hahler 2014-11-15 13:59:42 +01:00
parent b7dfc3ec04
commit 1e60c98e4a

View File

@ -24,7 +24,7 @@ _dotenv_authorize() {
_dotenv_deauthorize() {
env_file=$1
echo $(grep -Gv $env_file $ENV_AUTHORIZATION_FILE) > $ENV_AUTHORIZATION_FILE
echo $(\grep -Gv $env_file $ENV_AUTHORIZATION_FILE) > $ENV_AUTHORIZATION_FILE
}
_dotenv_print_unauthorized_message() {