From 0ea22541e36e55b000023fd24e2f600e11651a50 Mon Sep 17 00:00:00 2001 From: Henning Dieterichs Date: Tue, 16 Dec 2025 16:51:52 +0100 Subject: [PATCH] Logs the sha of dependencies --- scripts/lib/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/lib/index.ts b/scripts/lib/index.ts index 894aa3af..a6a26b4d 100644 --- a/scripts/lib/index.ts +++ b/scripts/lib/index.ts @@ -54,6 +54,7 @@ export async function gitShallowClone( await run(`git fetch --depth 1 origin ${ref}`, options); await run(`git checkout ${ref}`, options); const commitId = await gitCommitId(targetPath); + console.log(`Cloned ${repositoryUrl} (${commitId}) to ${targetPath}`); return { commitId }; }