Logs the sha of dependencies

This commit is contained in:
Henning Dieterichs 2025-12-16 16:51:52 +01:00
parent b8fa85f6c8
commit 0ea22541e3
No known key found for this signature in database
GPG key ID: 771381EFFDB9EC06

View file

@ -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 };
}