From 516f34c37eab160c7d6dbe3dec4f1d32ee30e0c4 Mon Sep 17 00:00:00 2001 From: daz Date: Thu, 25 Apr 2024 10:37:03 +0100 Subject: [PATCH] Set the report dir for download-and-submit Fixes #196 --- sources/src/dependency-graph.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/sources/src/dependency-graph.ts b/sources/src/dependency-graph.ts index a658f0c..64ca6fc 100644 --- a/sources/src/dependency-graph.ts +++ b/sources/src/dependency-graph.ts @@ -22,6 +22,7 @@ export async function setup(config: DependencyGraphConfig): Promise { } // Download and submit early, for compatability with dependency review. if (option === DependencyGraphOption.DownloadAndSubmit) { + maybeExportVariable('DEPENDENCY_GRAPH_REPORT_DIR', config.getReportDirectory()) await downloadAndSubmitDependencyGraphs(config) return }