mirror of
https://github.com/Tarrasch/zsh-autoenv.git
synced 2024-11-26 08:50:59 +02:00
Add doc for _autoenv_deauthorize
This commit is contained in:
parent
5655e26d6a
commit
1bfed02bc2
@ -152,6 +152,9 @@ _autoenv_authorize() {
|
|||||||
_autoenv_hash_pair $env_file >> $AUTOENV_ENV_FILENAME
|
_autoenv_hash_pair $env_file >> $AUTOENV_ENV_FILENAME
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# Deauthorize a given filename, by removing it from the auth file.
|
||||||
|
# This uses `test -s` to only handle non-empty files, and a subshell to
|
||||||
|
# allow for writing to the same file again.
|
||||||
_autoenv_deauthorize() {
|
_autoenv_deauthorize() {
|
||||||
local env_file=${1:A}
|
local env_file=${1:A}
|
||||||
if [[ -s $AUTOENV_ENV_FILENAME ]]; then
|
if [[ -s $AUTOENV_ENV_FILENAME ]]; then
|
||||||
|
Loading…
Reference in New Issue
Block a user