Skip to content
This repository has been archived by the owner on Feb 26, 2022. It is now read-only.

Commit

Permalink
Merge pull request #764 from Benvie/bug837973
Browse files Browse the repository at this point in the history
Bug 837973: Find Aurora binary on Windows r=@ochameau
  • Loading branch information
ochameau committed Feb 5, 2013
2 parents 9550fe3 + 7a2d1b6 commit 35f2826
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions python-lib/mozrunner/__init__.py
Expand Up @@ -453,8 +453,10 @@ def find_binary(self):
if binary is None:
for bin in [(program_files, 'Mozilla Firefox', 'firefox.exe'),
(os.environ.get("ProgramFiles(x86)"),'Mozilla Firefox', 'firefox.exe'),
(program_files,'Nightly', 'firefox.exe'),
(os.environ.get("ProgramFiles(x86)"),'Nightly', 'firefox.exe')
(program_files, 'Nightly', 'firefox.exe'),
(os.environ.get("ProgramFiles(x86)"),'Nightly', 'firefox.exe'),
(program_files, 'Aurora', 'firefox.exe'),
(os.environ.get("ProgramFiles(x86)"),'Aurora', 'firefox.exe')
]:
path = os.path.join(*bin)
if os.path.isfile(path):
Expand Down

0 comments on commit 35f2826

Please sign in to comment.