mirror of
https://github.com/bnmgh1/NodeSandbox.git
synced 2025-04-20 02:49:56 +08:00
15 lines
355 B
JavaScript
15 lines
355 B
JavaScript
exports.noPrebuilts = function (opts) {
|
|
return new Error([
|
|
'No prebuilt binaries found',
|
|
'(target=' + opts.target,
|
|
'runtime=' + opts.runtime,
|
|
'arch=' + opts.arch,
|
|
'libc=' + opts.libc,
|
|
'platform=' + opts.platform + ')'
|
|
].join(' '))
|
|
}
|
|
|
|
exports.invalidArchive = function () {
|
|
return new Error('Missing .node file in archive')
|
|
}
|