1
0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2026-03-18 16:40:19 +08:00

fix(colored-man-pages): quote array expansion (#13591)

This commit is contained in:
Adam Spiers 2026-02-23 10:33:24 +00:00 committed by GitHub
parent 536515d186
commit 400591e71c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -43,7 +43,7 @@ function colored() {
environment+=( PATH="${__colored_man_pages_dir}:$PATH" ) environment+=( PATH="${__colored_man_pages_dir}:$PATH" )
fi fi
command env $environment "$@" command env "${environment[@]}" "$@"
} }
# Colorize man and dman/debman (from debian-goodies) # Colorize man and dman/debman (from debian-goodies)