From 15e8422cfe47c90bc5dae51ffb3864c914eee6a4 Mon Sep 17 00:00:00 2001 From: AnxietyisReal <96593068+AnxietyisReal@users.noreply.github.com> Date: Sun, 6 Aug 2023 21:44:48 +1000 Subject: [PATCH] Attempt to fix broken pipe error --- startWithYarn.cjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/startWithYarn.cjs b/startWithYarn.cjs index 6d4a530..b424b85 100644 --- a/startWithYarn.cjs +++ b/startWithYarn.cjs @@ -1 +1 @@ -require('node:child_process').spawn('yarn node dist/index.js', {stdio: 'inherit', windowsHide: true, shell: true}) \ No newline at end of file +require('node:child_process').spawn('yarn node dist/index.js', {stdio: [null,process.stdout,null,null], windowsHide: true, shell: true}) \ No newline at end of file