Fixed issue when initializing git-secret with an existing .gitignore

This commit is contained in:
pǝɯɐɥoɯ 2017-09-05 22:55:34 -04:00 committed by Carlos Hernandez
parent 684ca668c2
commit 674a880882

View File

@ -460,10 +460,10 @@ function _secrets_dir_is_not_ignored {
git_secret_dir=$(_get_secrets_dir)
local ignores
ignores=$(_check_ignore "${_SECRETS_DIR}/")
ignores=$(_check_ignore "${_SECRETS_DIR}")
if [[ ! $ignores -eq 1 ]]; then
_abort "'$git_secret_dir/' is ignored."
_abort "'$git_secret_dir' is ignored."
fi
}