Skip to content

Commit

Permalink
Revised commit msg analysis to accomodate if version encountered fo…
Browse files Browse the repository at this point in the history
…rmatting issues
  • Loading branch information
adamlui committed Dec 19, 2024
1 parent 8bf9d9f commit a558ca8
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion brave-omnibox/utils/bump.sh
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ for manifest_path in "${MANIFEST_PATHS[@]}" ; do
if [ "$chromium_only" != true ] && [ "$ff_only" != true ] ; then
echo "Checking last commit details for $platform_manifest_path..."
latest_platform_commit_msg=$(git log -1 --format=%s -- "$platform_manifest_path")
if [[ $latest_platform_commit_msg =~ bump.*(version|manifest) ]] ; then
if [[ $latest_platform_commit_msg =~ bump.*(ersion|manifest) ]] ; then
echo -e "No changes found. Skipping...\n" ; continue ; fi
fi

Expand Down
2 changes: 1 addition & 1 deletion chatgpt-auto-continue/utils/bump/extension-manifests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ for manifest_path in "${MANIFEST_PATHS[@]}" ; do
if [ "$chromium_only" != true ] && [ "$ff_only" != true ] ; then
echo "Checking last commit details for $platform_manifest_path..."
latest_platform_commit_msg=$(git log -1 --format=%s -- "$platform_manifest_path")
if [[ $latest_platform_commit_msg =~ bump.*(version|manifest) ]] ; then
if [[ $latest_platform_commit_msg =~ bump.*(ersion|manifest) ]] ; then
echo -e "No changes found. Skipping...\n" ; continue ; fi
fi

Expand Down
2 changes: 1 addition & 1 deletion chatgpt-infinity/utils/bump/extension-manifests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ for manifest_path in "${MANIFEST_PATHS[@]}" ; do
if [ "$chromium_only" != true ] && [ "$ff_only" != true ] ; then
echo "Checking last commit details for $platform_manifest_path..."
latest_platform_commit_msg=$(git log -1 --format=%s -- "$platform_manifest_path")
if [[ $latest_platform_commit_msg =~ bump.*(version|manifest) ]] ; then
if [[ $latest_platform_commit_msg =~ bump.*(ersion|manifest) ]] ; then
echo -e "No changes found. Skipping...\n" ; continue ; fi
fi

Expand Down
2 changes: 1 addition & 1 deletion chatgpt-widescreen/utils/bump/extension-manifests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ for manifest_path in "${MANIFEST_PATHS[@]}" ; do
if [ "$chromium_only" != true ] && [ "$ff_only" != true ] ; then
echo "Checking last commit details for $platform_manifest_path..."
latest_platform_commit_msg=$(git log -1 --format=%s -- "$platform_manifest_path")
if [[ $latest_platform_commit_msg =~ bump.*(version|manifest) ]] ; then
if [[ $latest_platform_commit_msg =~ bump.*(ersion|manifest) ]] ; then
echo -e "No changes found. Skipping...\n" ; continue ; fi
fi

Expand Down
2 changes: 1 addition & 1 deletion perplexity-omnibox/utils/bump.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ TODAY=$(date +'%Y.%-m.%-d') # YYYY.M.D format
chromium_manifest_path=$(dirname "$MANIFEST_PATH" | sed 's|^\./||')
echo "Checking last commit details for $chromium_manifest_path..."
latest_platform_commit_msg=$(git log -1 --format=%s -- "$chromium_manifest_path")
if [[ $latest_platform_commit_msg =~ bump.*(version|manifest) ]] ; then
if [[ $latest_platform_commit_msg =~ bump.*(ersion|manifest) ]] ; then
echo -e "No changes found." ; exit ; fi

echo "Bumping version in Chromium manifest..."
Expand Down
2 changes: 1 addition & 1 deletion phind-omnibox/utils/bump.sh
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ for manifest_path in "${MANIFEST_PATHS[@]}" ; do
if [ "$chromium_only" != true ] && [ "$ff_only" != true ] ; then
echo "Checking last commit details for $platform_manifest_path..."
latest_platform_commit_msg=$(git log -1 --format=%s -- "$platform_manifest_path")
if [[ $latest_platform_commit_msg =~ bump.*(version|manifest) ]] ; then
if [[ $latest_platform_commit_msg =~ bump.*(ersion|manifest) ]] ; then
echo -e "No changes found. Skipping...\n" ; continue ; fi
fi

Expand Down
2 changes: 1 addition & 1 deletion utils/bump/extension-manifests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ for project_name in "${SORTED_PROJECTS[@]}" ; do
echo "Checking last commit details for $platform_manifest_path..."
latest_platform_commit_msg=$(git log -1 --format=%s -- "$platform_manifest_path")
echo $latest_platform_commit_msg
if [[ $latest_platform_commit_msg =~ bump.*(version|manifest) ]] ; then
if [[ $latest_platform_commit_msg =~ bump.*(ersion|manifest) ]] ; then
echo -e "No changes found. Skipping...\n" ; continue ; fi
fi

Expand Down
2 changes: 1 addition & 1 deletion you.com-omnibox/utils/bump.sh
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ for manifest_path in "${MANIFEST_PATHS[@]}" ; do
if [ "$chromium_only" != true ] && [ "$ff_only" != true ] ; then
echo "Checking last commit details for $platform_manifest_path..."
latest_platform_commit_msg=$(git log -1 --format=%s -- "$platform_manifest_path")
if [[ $latest_platform_commit_msg =~ bump.*(version|manifest) ]] ; then
if [[ $latest_platform_commit_msg =~ bump.*(ersion|manifest) ]] ; then
echo -e "No changes found. Skipping...\n" ; continue ; fi
fi

Expand Down

0 comments on commit a558ca8

Please sign in to comment.