From dee6f55148cf540806bdad868f248062166fe588 Mon Sep 17 00:00:00 2001 From: demenik Date: Fri, 5 Dec 2025 01:19:05 +0100 Subject: [PATCH] fix: Remove unnecessary print --- home/shells/zsh/scripts/git-changes.sh | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/home/shells/zsh/scripts/git-changes.sh b/home/shells/zsh/scripts/git-changes.sh index ce2c768..82570ad 100644 --- a/home/shells/zsh/scripts/git-changes.sh +++ b/home/shells/zsh/scripts/git-changes.sh @@ -54,9 +54,6 @@ chores="" merges="" others="" -echo "Generating changelog for '$TARGET_BRANCH' (comparing against '$BASE_BRANCH')..." -echo "-------------------------------------------------------------------------------" - while IFS="|" read -r hash subject; do link=$(get_commit_link "$hash") @@ -69,7 +66,7 @@ while IFS="|" read -r hash subject; do case "$type" in feat) feats="${feats}\n${line}" ;; fix) fixes="${fixes}\n${line}" ;; - refactor) refactors="${refactors}\n- ${line}" ;; + refactor) refactors="${refactors}\n${line}" ;; perf) perfs="${perfs}\n${line}" ;; style) styles="${styles}\n${line}" ;; test) tests="${tests}\n${line}" ;;