mirror of
https://github.com/Tarrasch/zsh-autoenv.git
synced 2024-11-16 13:20:59 +02:00
5e18125f04
- Revert usage of "read -q" for authentication (#10) - Change format of "not authenticated" message (#9)
19 lines
525 B
Bash
19 lines
525 B
Bash
# Ensure we have our mocked out AUTOENV_ENV_FILENAME
|
|
# (via .zshenv).
|
|
|
|
[[ $AUTOENV_ENV_FILENAME[0,4] == '/tmp' ]] || return 1
|
|
|
|
# Reset any authentication.
|
|
echo -n > $AUTOENV_ENV_FILENAME
|
|
|
|
# Add file $1 (with optional hash $2) to authentication file.
|
|
test_autoenv_add_to_env() {
|
|
_autoenv_hash_pair $1 $2 >> $AUTOENV_ENV_FILENAME
|
|
}
|
|
|
|
# Add enter and leave env files to authentication file.
|
|
test_autoenv_auth_env_files() {
|
|
test_autoenv_add_to_env $PWD/$AUTOENV_FILE_ENTER
|
|
test_autoenv_add_to_env $PWD/$AUTOENV_FILE_LEAVE
|
|
}
|