Unverified Commit 1aa58d42 authored by jzhang046's avatar jzhang046 Committed by GitHub

fix(changelog): generate correct commit link in markdown (#11356)

parent c35ca172
...@@ -209,7 +209,7 @@ function display-release { ...@@ -209,7 +209,7 @@ function display-release {
case "$output" in case "$output" in
raw) printf '%s' "$hash" ;; raw) printf '%s' "$hash" ;;
text) printf '\e[33m%s\e[0m' "$hash" ;; # red text) printf '\e[33m%s\e[0m' "$hash" ;; # red
md) printf '[`%s`](https://github.com/ohmyzsh/ohmyzsh/commit/%s)' "$hash" ;; md) printf '[`%s`](https://github.com/ohmyzsh/ohmyzsh/commit/%s)' "$hash" "$hash" ;;
esac esac
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment