WIP: Dodaj wsparcie dla Dockera #128

Draft
d33tah wants to merge 44 commits from d33tah/rentgen:develop into develop
Showing only changes of commit 9046710a6d - Show all commits

View File

@ -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"