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
1 changed files with 1 additions and 1 deletions

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() {