feat(dotenv): add named pipe (FIFO) support (#13561)

This commit is contained in:
Thomas Witt 2026-02-16 13:08:13 +02:00 committed by GitHub
commit 993afc8267
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 9 additions and 1 deletions

View file

@ -11,7 +11,7 @@
## Functions
source_env() {
if [[ ! -f "$ZSH_DOTENV_FILE" ]]; then
if [[ ! -f "$ZSH_DOTENV_FILE" ]] && [[ ! -p "$ZSH_DOTENV_FILE" ]]; then
return
fi