We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6533be0 commit 428cfe7Copy full SHA for 428cfe7
installers/npm/binary.js
@@ -135,9 +135,5 @@ function missingSubPackageHelp(subPackageName)
135
function findSubPackage(platform, arch)
136
{
137
var packagePrefix = '@zokka/zokka-binary-';
138
- if (platform === 'darwin') {
139
- return packagePrefix + 'darwin_x64';
140
- } else {
141
- return packagePrefix + process.platform + '_' + process.arch;
142
- }
+ return packagePrefix + process.platform + '_' + process.arch;
143
}
0 commit comments