mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-06 07:20:43 +00:00
fix: clean up full release helper branches
This commit is contained in:
@@ -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 = {}) {
|
||||
|
||||
Reference in New Issue
Block a user