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
(async()=>{console.log('Hello');//const proc = tjs.spawn(['/usr/bin/uname', '-a']);//const status = await proc.wait();conststatus=awaittjs.spawn(['/usr/bin/uname','-a']).wait();console.log(`World! status=${status.exit_status}`);})();
prints only
Hello
Linux builder 5.15.0-92-generic #102-Ubuntu SMP Wed Jan 10 09:33:48 UTC 2024 x86_64 x86_64 x86_64 GNU/Linux
But when replacing const status = await tjs.spawn(['/usr/bin/uname', '-a']).wait(); with the commented lines, the last log would be printed as expected.
prints only
But when replacing
const status = await tjs.spawn(['/usr/bin/uname', '-a']).wait();
with the commented lines, the last log would be printed as expected.Not sure if this is a duplicate of #450
The text was updated successfully, but these errors were encountered: