-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixes Firefox Nightly and adds improve safari support (#109)
* Fixes Firefox Nightly and adds improve safari support * Adding logging for trqvis debugging * Force download on travis
- Loading branch information
Matt Gaunt
authored
Jan 27, 2018
1 parent
26b480d
commit 7794a60
Showing
9 changed files
with
36 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -87,7 +87,7 @@ class LocalChromeBrowser extends LocalBrowser { | |
// Find OS X expected path | ||
let firefoxAppName; | ||
if (this._release === 'unstable') { | ||
firefoxAppName = 'FirefoxNightly.app'; | ||
firefoxAppName = 'Firefox Nightly.app'; | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
gauntface
|
||
} else { | ||
firefoxAppName = 'Firefox.app'; | ||
} | ||
|
@@ -129,7 +129,7 @@ class LocalChromeBrowser extends LocalBrowser { | |
if (this._release === 'stable') { | ||
return '/Applications/Firefox.app/Contents/MacOS/firefox'; | ||
} else if (this._release === 'unstable') { | ||
return '/Applications/FirefoxNightly.app/Contents/MacOS/firefox'; | ||
return '/Applications/Firefox Nightly.app/Contents/MacOS/firefox'; | ||
This comment has been minimized.
Sorry, something went wrong. |
||
} | ||
break; | ||
case 'linux': | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
I don't think this is valid. We reverted this renaming a few weeks ago.
This will probably fail.