From 9046710a6d203468094b75290dd2636b758fd709 Mon Sep 17 00:00:00 2001 From: Jacek Wielemborek Date: Sat, 25 Oct 2025 20:57:26 +0200 Subject: [PATCH] fix(verify): correct Firefox profile glob pattern MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit web-ext creates profiles at /tmp/firefox-profile* not /tmp/tmp-* 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- scripts/test_verify.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/test_verify.py b/scripts/test_verify.py index 96b1a15..308213e 100755 --- a/scripts/test_verify.py +++ b/scripts/test_verify.py @@ -127,8 +127,8 @@ def check_extension_storage() -> tuple[bool, str]: import glob import json - # Find Firefox profile created by web-ext - profiles = glob.glob("/tmp/tmp-*-*-rentgen@*") + # Find Firefox profile created by web-ext (pattern: /tmp/firefox-profile*) + profiles = glob.glob("/tmp/firefox-profile*") if not profiles: return False, "No Firefox profile found"