From fcbc62152292a8db74d832aa1c8be59dac185dc7 Mon Sep 17 00:00:00 2001 From: Oliver Matthews Date: Wed, 26 Nov 2025 12:18:34 +0000 Subject: [PATCH] add firefox-esr to profile search --- internal/firefox/find/find_unix.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/internal/firefox/find/find_unix.go b/internal/firefox/find/find_unix.go index 289e60d..57f653b 100644 --- a/internal/firefox/find/find_unix.go +++ b/internal/firefox/find/find_unix.go @@ -24,6 +24,10 @@ func firefoxRoots(yield func(string, error) bool) { if !yield(filepath.Join(home, `.mozilla`, `firefox`), nil) { return } + // Mozilla PPA + if !yield(filepath.Join(home, `.mozilla`, `firefox-esr`), nil) { + return + } // on WSL Linux add Windows paths if runtime.GOOS != `linux` { return