From 84d4a8c819002e41695beb514003c5088353c2dc Mon Sep 17 00:00:00 2001 From: kudo-sync-bot Date: Thu, 19 Dec 2024 11:06:06 -0800 Subject: [PATCH] =?UTF-8?q?Shortened=20platform=20flag=20check=20before=20?= =?UTF-8?q?verifying=20commit=20changes=20=E2=86=9E=20[auto-sync=20from=20?= =?UTF-8?q?https://github.com/adamlui/ai-web-extensions]?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- utils/bump.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/bump.sh b/utils/bump.sh index 43589d8..9fd7671 100644 --- a/utils/bump.sh +++ b/utils/bump.sh @@ -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"