summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xscripts/check_binary_size.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/check_binary_size.js b/scripts/check_binary_size.js
index 5caf2914dd..082b2ba741 100755
--- a/scripts/check_binary_size.js
+++ b/scripts/check_binary_size.js
@@ -46,7 +46,8 @@ function getPriorSize() {
repo: 'mapbox-gl-native',
ref: mergeBase
}).then(({data}) => {
- console.log(JSON.stringify(data));
+ console.log(`mergeBase: ${mergeBase}`)
+ console.log(`github.checks.listForRef({..}): ` + JSON.stringify(data));
const run = data.check_runs.find(run => run.name === name);
if (!run) {
console.log('No matching check found.');