Skip to content

Commit 428cfe7

Browse files
committed
Fix issue with Mac npm package
1 parent 6533be0 commit 428cfe7

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

installers/npm/binary.js

+1-5
Original file line numberDiff line numberDiff line change
@@ -135,9 +135,5 @@ function missingSubPackageHelp(subPackageName)
135135
function findSubPackage(platform, arch)
136136
{
137137
var packagePrefix = '@zokka/zokka-binary-';
138-
if (platform === 'darwin') {
139-
return packagePrefix + 'darwin_x64';
140-
} else {
141-
return packagePrefix + process.platform + '_' + process.arch;
142-
}
138+
return packagePrefix + process.platform + '_' + process.arch;
143139
}

0 commit comments

Comments
 (0)