mirror of
https://git.quad4.io/RNS-Things/MeshChatX.git
synced 2026-03-31 16:55:42 +00:00
10 lines
241 B
JavaScript
Executable File
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);
|
|
}
|