This commit is contained in:
Louis Lam 2022-09-08 22:36:34 +08:00
parent 9589fcfdef
commit 6601e9bbba

View File

@ -17,5 +17,12 @@ let branch = inputArray[1];
console.log("Checkout pr");
// Checkout the pr
childProcess.spawnSync("git", [ "remote", "add", name, `https://github.com/${name}/uptime-kuma` ]);
childProcess.spawnSync("git", [ "checkout", `name/${branch}`, "--force" ]);
let result = childProcess.spawnSync("git", [ "remote", "add", name, `https://github.com/${name}/uptime-kuma` ]);
console.log(result.stdout);
console.error(result.stderr);
result = childProcess.spawnSync("git", [ "checkout", `name/${branch}`, "--force" ]);
console.log(result.stdout);
console.error(result.stderr);