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