forked from icd/rentgen
fix(verify): correct Firefox profile glob pattern
web-ext creates profiles at /tmp/firefox-profile* not /tmp/tmp-* 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
parent
8f50811aa7
commit
9046710a6d
@ -127,8 +127,8 @@ def check_extension_storage() -> tuple[bool, str]:
|
|||||||
import glob
|
import glob
|
||||||
import json
|
import json
|
||||||
|
|
||||||
# Find Firefox profile created by web-ext
|
# Find Firefox profile created by web-ext (pattern: /tmp/firefox-profile*)
|
||||||
profiles = glob.glob("/tmp/tmp-*-*-rentgen@*")
|
profiles = glob.glob("/tmp/firefox-profile*")
|
||||||
if not profiles:
|
if not profiles:
|
||||||
return False, "No Firefox profile found"
|
return False, "No Firefox profile found"
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user