We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 94c9766 commit 723454aCopy full SHA for 723454a
index.js
@@ -18,6 +18,13 @@ var DetectBrowsers = function (config, logger) {
18
browserNames = Object.keys(browsers),
19
result = [];
20
21
+ // only use one firefox version on linux
22
+ if (process.platform === 'linux') {
23
+ browserNames = browserNames.filter(function (name) {
24
+ return name !== 'firefoxAurora' && name !== 'firefoxNightly'
25
+ });
26
+ }
27
+
28
// iterate over all browsers in the browsers folder
29
for (i = 0, length = browserNames.length; i < length; i++) {
30
var browser = browsers[browserNames[i]],
0 commit comments