Skip to content

Commit 584e8c0

Browse files
committed
Corrected key extraction in append ver to commit msg
1 parent 6b16c5e commit 584e8c0

File tree

9 files changed

+9
-1
lines changed

9 files changed

+9
-1
lines changed

brave-omnibox/utils/bump.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,7 @@ if [[ "$no_commit" != true ]] ; then
8585
for manifest in "${!bumped_manifests[@]}" ; do
8686
IFS=";" read -r old_ver new_ver <<< "${bumped_manifests[$manifest]}" ; unique_versions["$new_ver"]=1 ; done
8787
if (( ${#unique_versions[@]} == 1 )) ; then COMMIT_MSG+=" to \`${unique_versions[0]}\`" ; fi
88+
if (( ${#unique_versions[@]} == 1 )) ; then COMMIT_MSG+=" to \`${!unique_versions[@]}\`" ; fi
8889

8990
# git add/commit/push
9091
git add ./**/manifest.json && git commit -n -m "$COMMIT_MSG"

chatgpt-auto-continue/utils/bump/extension-manifests.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,7 @@ if [[ "$no_commit" != true ]] ; then
8585
for manifest in "${!bumped_manifests[@]}" ; do
8686
IFS=";" read -r old_ver new_ver <<< "${bumped_manifests[$manifest]}" ; unique_versions["$new_ver"]=1 ; done
8787
if (( ${#unique_versions[@]} == 1 )) ; then COMMIT_MSG+=" to \`${unique_versions[0]}\`" ; fi
88+
if (( ${#unique_versions[@]} == 1 )) ; then COMMIT_MSG+=" to \`${!unique_versions[@]}\`" ; fi
8889

8990
# git add/commit/push
9091
git add ./**/manifest.json && git commit -n -m "$COMMIT_MSG"

chatgpt-infinity/utils/bump/extension-manifests.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,7 @@ if [[ "$no_commit" != true ]] ; then
8585
for manifest in "${!bumped_manifests[@]}" ; do
8686
IFS=";" read -r old_ver new_ver <<< "${bumped_manifests[$manifest]}" ; unique_versions["$new_ver"]=1 ; done
8787
if (( ${#unique_versions[@]} == 1 )) ; then COMMIT_MSG+=" to \`${unique_versions[0]}\`" ; fi
88+
if (( ${#unique_versions[@]} == 1 )) ; then COMMIT_MSG+=" to \`${!unique_versions[@]}\`" ; fi
8889

8990
# git add/commit/push
9091
git add ./**/manifest.json && git commit -n -m "$COMMIT_MSG"

chatgpt-omnibox/utils/bump.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,7 @@ if [[ "$no_commit" != true ]] ; then
8585
for manifest in "${!bumped_manifests[@]}" ; do
8686
IFS=";" read -r old_ver new_ver <<< "${bumped_manifests[$manifest]}" ; unique_versions["$new_ver"]=1 ; done
8787
if (( ${#unique_versions[@]} == 1 )) ; then COMMIT_MSG+=" to \`${unique_versions[0]}\`" ; fi
88+
if (( ${#unique_versions[@]} == 1 )) ; then COMMIT_MSG+=" to \`${!unique_versions[@]}\`" ; fi
8889

8990
# git add/commit/push
9091
git add ./**/manifest.json && git commit -n -m "$COMMIT_MSG"

chatgpt-widescreen/utils/bump/extension-manifests.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ if [[ "$no_commit" != true ]] ; then
8484
declare -A unique_versions
8585
for manifest in "${!bumped_manifests[@]}" ; do
8686
IFS=";" read -r old_ver new_ver <<< "${bumped_manifests[$manifest]}" ; unique_versions["$new_ver"]=1 ; done
87-
if (( ${#unique_versions[@]} == 1 )) ; then COMMIT_MSG+=" to \`${unique_versions[0]}\`" ; fi
87+
if (( ${#unique_versions[@]} == 1 )) ; then COMMIT_MSG+=" to \`${!unique_versions[@]}\`" ; fi
8888

8989
# git add/commit/push
9090
git add ./**/manifest.json && git commit -n -m "$COMMIT_MSG"

deepseek-omnibox/utils/bump.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,7 @@ if [[ "$no_commit" != true ]] ; then
8585
for manifest in "${!bumped_manifests[@]}" ; do
8686
IFS=";" read -r old_ver new_ver <<< "${bumped_manifests[$manifest]}" ; unique_versions["$new_ver"]=1 ; done
8787
if (( ${#unique_versions[@]} == 1 )) ; then COMMIT_MSG+=" to \`${unique_versions[0]}\`" ; fi
88+
if (( ${#unique_versions[@]} == 1 )) ; then COMMIT_MSG+=" to \`${!unique_versions[@]}\`" ; fi
8889

8990
# git add/commit/push
9091
git add ./**/manifest.json && git commit -n -m "$COMMIT_MSG"

phind-omnibox/utils/bump.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,7 @@ if [[ "$no_commit" != true ]] ; then
8585
for manifest in "${!bumped_manifests[@]}" ; do
8686
IFS=";" read -r old_ver new_ver <<< "${bumped_manifests[$manifest]}" ; unique_versions["$new_ver"]=1 ; done
8787
if (( ${#unique_versions[@]} == 1 )) ; then COMMIT_MSG+=" to \`${unique_versions[0]}\`" ; fi
88+
if (( ${#unique_versions[@]} == 1 )) ; then COMMIT_MSG+=" to \`${!unique_versions[@]}\`" ; fi
8889

8990
# git add/commit/push
9091
git add ./**/manifest.json && git commit -n -m "$COMMIT_MSG"

utils/bump/extension-manifests.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,7 @@ if [[ "$no_commit" != true ]] ; then
9999
for manifest in "${!bumped_manifests[@]}" ; do
100100
IFS=";" read -r old_ver new_ver <<< "${bumped_manifests[$manifest]}" ; unique_versions["$new_ver"]=1 ; done
101101
if (( ${#unique_versions[@]} == 1 )) ; then COMMIT_MSG+=" to \`${unique_versions[0]}\`" ; fi
102+
if (( ${#unique_versions[@]} == 1 )) ; then COMMIT_MSG+=" to \`${!unique_versions[@]}\`" ; fi
102103

103104
# git add/commit/push
104105
git add ./**/manifest.json && git commit -n -m "$COMMIT_MSG"

you.com-omnibox/utils/bump.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,7 @@ if [[ "$no_commit" != true ]] ; then
8585
for manifest in "${!bumped_manifests[@]}" ; do
8686
IFS=";" read -r old_ver new_ver <<< "${bumped_manifests[$manifest]}" ; unique_versions["$new_ver"]=1 ; done
8787
if (( ${#unique_versions[@]} == 1 )) ; then COMMIT_MSG+=" to \`${unique_versions[0]}\`" ; fi
88+
if (( ${#unique_versions[@]} == 1 )) ; then COMMIT_MSG+=" to \`${!unique_versions[@]}\`" ; fi
8889

8990
# git add/commit/push
9091
git add ./**/manifest.json && git commit -n -m "$COMMIT_MSG"

0 commit comments

Comments
 (0)