From a958962729d5319f2e31fba70ada53f59e2ff94c Mon Sep 17 00:00:00 2001 From: thepaperpilot Date: Mon, 10 Jun 2024 20:05:38 -0500 Subject: [PATCH] debugging branch names when building --- build_garden.js | 1 + 1 file changed, 1 insertion(+) diff --git a/build_garden.js b/build_garden.js index 1301b685..8d617c11 100644 --- a/build_garden.js +++ b/build_garden.js @@ -194,6 +194,7 @@ function toSlug(string) { // Build changelog fs.mkdirSync("./site/changelog"); + console.log("remotes: " + (await exec("git branch -r -v")).stdout); const { stdout } = await exec('git log origin/master --after="2024-06-03T0:0:0+0000" --pretty=%H site/garden'); console.log(stdout); const entries = await Promise.all(stdout.split("\n").filter(p => p).map(hash => new Promise(async (resolve) => {