0
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-09-19 04:01:21 +02:00

fix(updater): properly show changelog via less

This commit is contained in:
Marc Cornellà 2020-12-04 12:33:36 +01:00
parent 1ac40cd445
commit 81bbe86db0

View file

@ -71,7 +71,7 @@ if git pull --rebase --stat origin master; then
# Display changelog with less if available, otherwise just print it to the terminal # Display changelog with less if available, otherwise just print it to the terminal
if (( $+commands[less] )); then if (( $+commands[less] )); then
command less -R <("$ZSH/tools/changelog.sh" HEAD "$last_commit") "$ZSH/tools/changelog.sh" HEAD "$last_commit" --text | command less -R
else else
"$ZSH/tools/changelog.sh" HEAD "$last_commit" "$ZSH/tools/changelog.sh" HEAD "$last_commit"
fi fi