From 09eede5b2657e6bee7afd3febd7f528623027437 Mon Sep 17 00:00:00 2001 From: Henning Dieterichs Date: Tue, 16 Dec 2025 17:52:03 +0100 Subject: [PATCH] Logs the sha of dependencies (#5146) --- 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 }; }