fix: clean up full release helper branches

This commit is contained in:
Peter Steinberger 2026-05-02 05:22:32 +01:00
parent 2808840fb5
commit a2cab17ff0
No known key found for this signature in database

View file

@ -22,10 +22,11 @@ function run(command, args, options = {}) {
console.log(["+", command, ...args].join(" "));
return "";
}
return execFileSync(command, args, {
const output = execFileSync(command, args, {
encoding: "utf8",
stdio: options.stdio ?? ["ignore", "pipe", "inherit"],
}).trim();
});
return typeof output === "string" ? output.trim() : "";
}
function runStatus(command, args, options = {}) {