sst
Version:
32 lines (26 loc) • 835 B
JavaScript
import { createRequire } from "node:module";
const require = createRequire(import.meta.url);
import path from "path";
import { execFileSync } from "child_process";
let resolved = process.env.SST_BIN_PATH;
if (!resolved) {
const name = `sst-${process.platform}-${process.arch}`;
const binary = process.platform === "win32" ? "sst.exe" : "sst";
try {
resolved = require.resolve(path.join(name, "bin", binary));
} catch (ex) {
console.error(
`It seems that your package manager failed to install the right version of the SST CLI for your platform. You can try manually installing the "${name}" package.`,
);
process.exit(1);
}
}
process.on("SIGINT", () => {});
try {
execFileSync(resolved, process.argv.slice(2), {
stdio: "inherit",
});
} catch (ex) {
process.exit(1);
}