Skip to content

Commit 5b0a092

Browse files
committed
Uppercased key words in top-level section comments for readability ↞ [auto-sync from https://github.com/adamlui/ai-web-extensions]
1 parent 7f10dad commit 5b0a092

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

utils/bump.sh

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,17 @@
22

33
# Bumps extension manifest + git commit/push
44

5-
# Init UI colors
5+
# Init UI COLORS
66
NC="\033[0m" # no color
77
BR="\033[1;91m" # bright red
88
BY="\033[1;33m" # bright yellow
99
BG="\033[1;92m" # bright green
1010
BW="\033[1;97m" # bright white
1111

12-
# Init manifest path
12+
# Init manifest PATH
1313
manifest="chromium/extension/manifest.json"
1414

15-
# Bump version
15+
# BUMP version
1616
echo -e "${BY}\nBumping version in ${manifest}...${NC}\n"
1717
TODAY=$(date +'%Y.%-m.%-d') # YYYY.M.D format
1818
new_versions=() # for dynamic commit msg
@@ -31,10 +31,10 @@ fi
3131
sed -i "s/\"version\": \"$old_ver\"/\"version\": \"$NEW_VER\"/" "$manifest"
3232
echo -e "${BW}v${old_ver}${NC}${BG}v${NEW_VER}${NC}"
3333

34-
# Commit/push bump(s)
34+
# COMMIT/PUSH bump(s)
3535
echo -e "${BY}\nCommitting bump to Git...\n${NC}"
3636
git add ./**/manifest.json && git commit -n -m "Bumped \`version\` to $NEW_VER"
3737
git push
3838

39-
# Print final summary
39+
# Print FINAL summary
4040
echo -e "\n${BG}Success! ${manifest} updated/committed/pushed to GitHub${NC}"

0 commit comments

Comments
 (0)