From 5085ef831b6596bc3dc0af485f0a1732a07f71e5 Mon Sep 17 00:00:00 2001 From: Cory LaViska Date: Wed, 7 Jun 2023 13:49:10 -0400 Subject: [PATCH] add shell for win --- scripts/build.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/build.js b/scripts/build.js index a7b3ad5a..c2239288 100644 --- a/scripts/build.js +++ b/scripts/build.js @@ -36,7 +36,8 @@ async function buildTheDocs(watch = false) { return spawnCallback('npx', ['@11ty/eleventy', '--watch', '--incremental', '--quiet'], { stdio: 'pipe', - cwd: 'docs' + cwd: 'docs', + shell: true }); }