Skip to content

Commit

Permalink
fix(windows): change getFirefoxExe function to allow running on win64
Browse files Browse the repository at this point in the history
change platform check at the top of getFirefoxExe function to include win64
  • Loading branch information
markchagers committed May 27, 2016
1 parent 71088c1 commit a332915
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ var PREFS =
// Return location of firefox.exe file for a given Firefox directory
// (available: "Mozilla Firefox", "Aurora", "Nightly").
var getFirefoxExe = function(firefoxDirName) {
if (process.platform !== 'win32') {
if (process.platform !== 'win32' && process.platform !== 'win64') {
return null;
}

Expand Down

0 comments on commit a332915

Please sign in to comment.