Skip to content

Commit

Permalink
find_firefox: Improve finding executable to firefox-esr
Browse files Browse the repository at this point in the history
  • Loading branch information
amotl committed Oct 17, 2023
1 parent 469389c commit 10b9b2d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion grafanimate/marionette.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,9 @@ def configure_marionette(self):

@classmethod
def find_firefox(cls):
candidates = where.where("firefox-bin")
candidates = []
candidates += where.where("firefox-bin")
candidates += where.where("firefox-esr")
candidates += [
"/Applications/Firefox.app/Contents/MacOS/firefox-bin",
]
Expand Down

0 comments on commit 10b9b2d

Please sign in to comment.