Files
2026-01-01 15:05:29 -06:00

10 lines
241 B
JavaScript
Executable File

#!/usr/bin/env node
const { execSync } = require("child_process");
try {
execSync(`poetry run python cx_setup.py build`, { stdio: "inherit" });
} catch (error) {
console.error("Build failed:", error.message);
process.exit(1);
}