22 lines
709 B
JavaScript
22 lines
709 B
JavaScript
#!/usr/bin/env node
|
|
const { spawnSync } = require("node:child_process");
|
|
|
|
const pkg = `@reasonix/cli-${process.platform}-${process.arch}`;
|
|
const exe = `reasonix${process.platform === "win32" ? ".exe" : ""}`;
|
|
|
|
let binary;
|
|
try {
|
|
binary = require.resolve(`${pkg}/bin/${exe}`);
|
|
} catch {
|
|
console.error(
|
|
`reasonix: no prebuilt binary for ${process.platform}-${process.arch}.\n` +
|
|
`Install the matching optional package (${pkg}), or build from source:\n` +
|
|
` https://github.com/esengine/DeepSeek-Reasonix`,
|
|
);
|
|
process.exit(1);
|
|
}
|
|
|
|
const res = spawnSync(binary, process.argv.slice(2), { stdio: "inherit" });
|
|
if (res.error) throw res.error;
|
|
process.exit(res.status === null ? 1 : res.status);
|