@homebridge/node-pty-prebuilt-multiarch
Version:
Fork pseudoterminals in Node.JS
22 lines (14 loc) • 604 B
text/typescript
import * as fs from 'fs';
import * as os from 'os';
import * as path from 'path';
function prebuildName(): string {
const tags = [];
tags.push(process.versions.hasOwnProperty('electron') ? 'electron' : 'node');
tags.push('abi' + process.versions.modules);
if (os.platform() === 'linux' && fs.existsSync('/etc/alpine-release')) {
tags.push('musl');
}
return tags.join('.') + '.node';
}
const pathToBuild = path.resolve(__dirname, `../prebuilds/${os.platform()}-${os.arch()}/${prebuildName()}`);
export const ptyPath: string | null = fs.existsSync(pathToBuild) ? pathToBuild : null;