From 657a9d8f686168a3eff1e79b8331ff9acdf5abd1 Mon Sep 17 00:00:00 2001 From: Quentin Pradet Date: Tue, 26 Nov 2024 10:37:54 +0400 Subject: [PATCH] Use git recordings when running `make validate` --- compiler/run-validations.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/run-validations.js b/compiler/run-validations.js index 17edfedd1c..0cc56f9a8c 100755 --- a/compiler/run-validations.js +++ b/compiler/run-validations.js @@ -174,7 +174,7 @@ async function run () { metadata.branchName = branchName spinner.text = 'Downloading recordings' - await $`node ${path.join(uploadRecordingsPath, 'download.js')} --branch ${branchName}` + await $`node ${path.join(uploadRecordingsPath, 'download.js')} --branch ${branchName} --git` spinner.text = 'Fetching artifacts' await $`node ${path.join(cloneEsPath, 'index.js')} --branch ${argv['branch']}`