chore: set goose binaries as executable in package.json (#8589)

This commit is contained in:
Jack Amadeo
2026-04-16 11:36:53 -04:00
committed by GitHub
parent fd93865951
commit 67b90205ed
15 changed files with 452 additions and 390 deletions
+36
View File
@@ -0,0 +1,36 @@
#!/usr/bin/env node
// Development entrypoint: ensures a goose binary is available, then launches
// the TUI via tsx. Skips the cargo build if GOOSE_BINARY is already set.
import { execFileSync } from "node:child_process";
import { existsSync } from "node:fs";
import { join, dirname } from "node:path";
import { fileURLToPath } from "node:url";
const __dirname = dirname(fileURLToPath(import.meta.url));
const repoRoot = join(__dirname, "..", "..", "..");
if (!process.env.GOOSE_BINARY) {
const binName = process.platform === "win32" ? "goose.exe" : "goose";
const binaryPath = join(repoRoot, "target", "debug", binName);
console.log("Building goose (debug)…");
execFileSync("cargo", ["build", "-p", "goose-cli"], {
cwd: repoRoot,
stdio: "inherit",
});
if (!existsSync(binaryPath)) {
console.error(`Build succeeded but binary not found at ${binaryPath}`);
process.exit(1);
}
process.env.GOOSE_BINARY = binaryPath;
}
execFileSync("tsx", [join(__dirname, "..", "src", "tui.tsx"), ...process.argv.slice(2)], {
cwd: process.cwd(),
stdio: "inherit",
env: process.env,
});