From 85ae99a966d1a3ed41022f62f8df854aad90ea4a Mon Sep 17 00:00:00 2001 From: kudo-sync-bot Date: Mon, 23 Dec 2024 00:26:05 -0800 Subject: [PATCH] =?UTF-8?q?Moved=20leading=20line=20break=20in=20`bumped?= =?UTF-8?q?=5Fcnt`=20echo=20to=20post-`git=20pull`=20echo=20for=20readabil?= =?UTF-8?q?ity=20=E2=86=9E=20[auto-sync=20from=20https://github.com/adamlu?= =?UTF-8?q?i/ai-web-extensions]?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- utils/bump.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/utils/bump.sh b/utils/bump.sh index 7adb916..ad0f1b2 100644 --- a/utils/bump.sh +++ b/utils/bump.sh @@ -72,10 +72,11 @@ if (( $bumped_cnt == 0 )) ; then echo -e "${BW}Completed. No manifests bumped.${ # PULL latest changes echo -e "${BY}Pulling latest changes from remote to sync local repository...${NC}\n" git pull || (echo -e "${BR}Merge failed, please resolve conflicts!${NC}" && exit 1) +echo '' # ADD/COMMIT/PUSH bump(s) plural_suffix=$((( $bumped_cnt > 1 )) && echo "s") -echo -e "\n${BG}${bumped_cnt} manifest${plural_suffix} bumped!\n${NC}" +echo -e "${BG}${bumped_cnt} manifest${plural_suffix} bumped!\n${NC}" echo -e "${BY}Committing bump${plural_suffix} to Git...\n${NC}" COMMIT_MSG="Bumped \`version\`" unique_versions=($(printf "%s\n" "${new_versions[@]}" | sort -u))