Skip to content

Commit d8e1f26

Browse files
committed
Moved leading line break in bumped_cnt echo to post-git pull echo for readability ↞ [auto-sync from https://github.com/adamlui/ai-web-extensions]
1 parent 66b7a53 commit d8e1f26

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

utils/bump.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,10 +49,11 @@ if (( $bumped_cnt == 0 )) ; then echo -e "${BW}Completed. No manifests bumped.${
4949
# PULL latest changes
5050
echo -e "${BY}Pulling latest changes from remote to sync local repository...${NC}\n"
5151
git pull || (echo -e "${BR}Merge failed, please resolve conflicts!${NC}" && exit 1)
52+
echo ''
5253

5354
# ADD/COMMIT/PUSH bump(s)
5455
plural_suffix=$((( $bumped_cnt > 1 )) && echo "s")
55-
echo -e "\n${BG}${bumped_cnt} manifest${plural_suffix} bumped!\n${NC}"
56+
echo -e "${BG}${bumped_cnt} manifest${plural_suffix} bumped!\n${NC}"
5657
echo -e "${BY}Committing bump${plural_suffix} to Git...\n${NC}"
5758
COMMIT_MSG="Bumped \`version\`"
5859
unique_versions=($(printf "%s\n" "${new_versions[@]}" | sort -u))

0 commit comments

Comments
 (0)