Skip to content

Commit

Permalink
Shortened platform flag check before verifying commit changes ↞ [auto…
Browse files Browse the repository at this point in the history
  • Loading branch information
kudo-sync-bot committed Dec 19, 2024
1 parent 8fb00fe commit 84d4a8c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/bump.sh
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ for manifest_path in "${MANIFEST_PATHS[@]}" ; do

# Check latest commit for extension changes if forcible platform flag not set
platform_manifest_path=$(dirname "$manifest_path" | sed 's|^\./||')
if [[ ! "${chromium_only} ${ff_only}" =~ "true" ]] ; then
if [[ ! "$chromium_only $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")
echo -e "${DG}${latest_platform_commit_msg}${NC}\n"
Expand Down

0 comments on commit 84d4a8c

Please sign in to comment.