diff options
| author | Carlo Sala <carlosalag@protonmail.com> | 2025-03-29 12:55:20 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-03-29 12:55:20 +0100 |
| commit | f81259fb344685e2dc8b67f8ad8764ccd4e8502e (patch) | |
| tree | f01fd258c25f7caf37fb05bd029296d1c79d0c19 /lib/cli.zsh | |
| parent | a78d006faa022a5104b542d7dec5a3439e72046e (diff) | |
| download | zsh-f81259fb344685e2dc8b67f8ad8764ccd4e8502e.tar.gz zsh-f81259fb344685e2dc8b67f8ad8764ccd4e8502e.tar.bz2 zsh-f81259fb344685e2dc8b67f8ad8764ccd4e8502e.zip | |
fix(cli): support `noexec` environments (#13042)
Closes #13032
Diffstat (limited to 'lib/cli.zsh')
| -rw-r--r-- | lib/cli.zsh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/cli.zsh b/lib/cli.zsh index aed86e758..3b6308313 100644 --- a/lib/cli.zsh +++ b/lib/cli.zsh @@ -193,7 +193,7 @@ EOF return 1 fi - "$ZSH/tools/changelog.sh" "$version" "${2:-}" "$format" + ZSH="$ZSH" command zsh -f "$ZSH/tools/changelog.sh" "$version" "${2:-}" "$format" } function _omz::plugin { |
