mirror of
https://github.com/Quad4-Software/MeshChatX.git
synced 2026-08-18 09:49:09 -04:00
9 lines
241 B
JavaScript
Executable file
9 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);
|
|
}
|