Commit 0f2e0044 by xzyfer

Fix lint issues

parent 2dded1e8
......@@ -181,9 +181,11 @@ function getBinaryName() {
} else if (pkg.nodeSassConfig && pkg.nodeSassConfig.binaryName) {
binaryName = pkg.nodeSassConfig.binaryName;
} else {
binaryName = [process.platform, '-',
binaryName = [
process.platform, '-',
process.arch, '-',
process.versions.modules].join('');
process.versions.modules
].join('');
}
return [binaryName, 'binding.node'].join('_');
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment