1
0
mirror of https://github.com/toast-ts/Daggerbot-TS.git synced 2024-09-29 08:20:59 -04:00

Fix broken pipe error

This commit is contained in:
toast-ts 2023-08-06 21:23:25 +10:00
parent 0ad3caf662
commit 96ee378d33

View File

@ -1 +1 @@
require('node:child_process').exec('yarn node dist/index.js', {windowsHide:true}, (error,stdout)=>{console.log(stdout); console.error(error)})
require('node:child_process').spawn('yarn node dist/index.js', {stdio: 'inherit', windowsHide: true, shell: true})