mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-11 00:10:08 +00:00
fix(vcs_info): don't patch VCS_INFO_formats if not found
This commit is contained in:
parent
ebfd7cb219
commit
b00b59364a
1 changed files with 1 additions and 1 deletions
|
@ -38,7 +38,7 @@
|
||||||
# due to malicious input as a consequence of CVE-2021-45444, which affects
|
# due to malicious input as a consequence of CVE-2021-45444, which affects
|
||||||
# zsh versions from 5.0.3 to 5.8.
|
# zsh versions from 5.0.3 to 5.8.
|
||||||
#
|
#
|
||||||
autoload -Uz +X regexp-replace VCS_INFO_formats
|
autoload -Uz +X regexp-replace VCS_INFO_formats 2>/dev/null || return
|
||||||
|
|
||||||
# We use $tmp here because it's already a local variable in VCS_INFO_formats
|
# We use $tmp here because it's already a local variable in VCS_INFO_formats
|
||||||
typeset PATCH='for tmp (base base-name branch misc revision subdir) hook_com[$tmp]="${hook_com[$tmp]//\%/%%}"'
|
typeset PATCH='for tmp (base base-name branch misc revision subdir) hook_com[$tmp]="${hook_com[$tmp]//\%/%%}"'
|
||||||
|
|
Loading…
Reference in a new issue