From cbba5060e6711fc1fde4905141315380745aa776 Mon Sep 17 00:00:00 2001 From: Wes Higbee Date: Fri, 19 Jan 2024 16:06:58 -0600 Subject: [PATCH] add firefox-esr + linux (ubuntu) support --- truststore_linux.go | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/truststore_linux.go b/truststore_linux.go index 2c4e5a37..9157c656 100644 --- a/truststore_linux.go +++ b/truststore_linux.go @@ -15,8 +15,11 @@ import ( ) var ( - FirefoxProfiles = []string{os.Getenv("HOME") + "/.mozilla/firefox/*", - os.Getenv("HOME") + "/snap/firefox/common/.mozilla/firefox/*"} + FirefoxProfiles = []string{ + os.Getenv("HOME") + "/.mozilla/firefox/*", + os.Getenv("HOME") + "/.mozilla/firefox-esr/*", + os.Getenv("HOME") + "/snap/firefox/common/.mozilla/firefox/*", + } NSSBrowsers = "Firefox and/or Chrome/Chromium" SystemTrustFilename string