You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
✔ The first colored line display well but after the spawn
✖ The second colored line wrong
const{ spawn }=require('child_process');asyncfunctiontest(){console.log('\x1b[36m%s\x1b[0m','I am cyan');awaitrun('echo Hello world!');console.log('\x1b[36m%s\x1b[0m','I am cyan');asyncfunctionrun(scrpt){constcmd=spawn('bash',['-c',scrpt],{stdio: 'inherit'});returnnewPromise((resolve)=>{cmd.on('close',(code)=>resolve(code));});}}test();
Cygwin is installed
bash is available on the path
Anybody knows what is wrong with this code?
Thank you!
The text was updated successfully, but these errors were encountered:
Syndrome
On windows after spawn the terminal color are not displayed well.
✔ The first colored line display well but after the spawn
✖ The second colored line wrong
Anybody knows what is wrong with this code?
Thank you!
The text was updated successfully, but these errors were encountered: