mirror of
https://github.com/Tarrasch/zsh-autoenv.git
synced 2024-11-05 01:10:59 +02:00
fd54606830
Without this, a new subshell would reset the env authentication file.
15 lines
318 B
Bash
15 lines
318 B
Bash
# Use invalid module path for zsh, to test alternative zstat implementation.
|
|
|
|
# Pre-load zsh/parameter, where we do not have/need(?) an alternative
|
|
# implementation.
|
|
zmodload zsh/parameter
|
|
|
|
module_path=(/dev/null)
|
|
|
|
zstat() {
|
|
echo "Should not get called."
|
|
}
|
|
|
|
# Source base setup.
|
|
source ${ZDOTDIR}/../ZDOTDIR/.zshenv
|