From cdfb06e38b311f8869241bfd1623aeece80e18d0 Mon Sep 17 00:00:00 2001 From: Andrew Clark Date: Thu, 11 Apr 2019 17:20:14 -0700 Subject: [PATCH] Fix path to results.json --- dangerfile.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dangerfile.js b/dangerfile.js index ff68706501..86e0330ec5 100644 --- a/dangerfile.js +++ b/dangerfile.js @@ -146,8 +146,9 @@ function git(args) { for (let i = 0; i < baseArtifactsInfo.length; i++) { const info = baseArtifactsInfo[i]; - if (info.path === 'home/circleci/project/scripts/results.json') { + if (info.path === 'home/circleci/project/scripts/rollup/results.json') { resultsResponse = await fetch(info.url); + break; } } } catch (error) {