From c36663364193a6c610f52a0faa119381a3bb018a Mon Sep 17 00:00:00 2001 From: Enoch Riese Date: Fri, 3 Feb 2023 23:42:01 -0600 Subject: [PATCH] adding logging to debug issue --- scripts/sync-dependencies.mjs | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/sync-dependencies.mjs b/scripts/sync-dependencies.mjs index 476c3091eef..358bcbf9fe3 100644 --- a/scripts/sync-dependencies.mjs +++ b/scripts/sync-dependencies.mjs @@ -16,6 +16,7 @@ const oldDepsRaw = readFileSync(depsFile, { encoding: 'utf8' }) // we get the branch name handed to us by the github action, // and it has all the info we need about the dependency being updated const branchName = process.argv[2] +console.log('processing updates from ', branchName) const versionRgx = /\d+\.\d+\.\d+$/ const dependencyVersion = branchName.match(versionRgx)[0] const dependency = branchName