From 3a5cddc244a0af3430850ea53b1a8c098f357aa7 Mon Sep 17 00:00:00 2001 From: konnorrogers Date: Tue, 29 Aug 2023 17:08:18 -0400 Subject: [PATCH] fix build --- scripts/build.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/build.js b/scripts/build.js index fa29ad5e9..f3764dc90 100644 --- a/scripts/build.js +++ b/scripts/build.js @@ -72,7 +72,7 @@ async function buildTheDocs(watch = false) { child.stderr.on('data', data => { if (data.includes(errorSignal)) { // This closes the dev server, not sure if thats what we want? - reject(child); + reject(output); } });