We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
sudo
Version: Deno x.x.x
deno 2.1.6 (stable, release, x86_64-unknown-linux-gnu) v8 13.0.245.12-rusty typescript 5.6.2
Related
[BUG] yarn workspaces foreach run prefix string will mess up console, when sudo. yarnpkg/berry#6667
yarn workspaces foreach run
seems like nodejs console race condition bug when sudo nodejs/node#56837
Until now, have not yet been confirmed as bug by nodejs and yarn.
Below is summary based on my current understanding of this problem.
I think
This is a nodejs + deno race condition bug when sudo
This may called yarn berry bug, depends on individual preference.
https://github.com/loynoir/reproduce-yarn-berry-6667
"scripts": { "reproduce": "yarn workspaces foreach --all --exclude . run reproduce", "workaround": "yarn workspaces foreach --all --exclude . run workaround", "simulate": "yarn workspaces foreach --all --exclude . run simulate" }
"scripts": { "reproduce": "sudo node ./simulate.mjs", "workaround": "deno run -A ./workaround.ts", "simulate": "node ./simulate.mjs" }
Because
yarn simulate
Which means
But
yarn reproduce console mess up.
yarn reproduce
yarn workaround console OK
yarn workaround
There is a way, I have not yet have time to extract logic out from yarn berry, leads to sudo XXX console is not isomprphic to XXX console.
sudo XXX
XXX
There is also a way, let sudo XXX console isomprphic to XXX console
sudo XXX console is not always isomprphic to XXX console
yarn simulate console OK
DISABLE_WORKAROUND=1 yarn workaround console mess up
DISABLE_WORKAROUND=1 yarn workaround
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Version: Deno x.x.x
deno 2.1.6 (stable, release, x86_64-unknown-linux-gnu)
v8 13.0.245.12-rusty
typescript 5.6.2
Related
[BUG]
yarn workspaces foreach run
prefix string will mess up console, whensudo
. yarnpkg/berry#6667seems like nodejs console race condition bug when
sudo
nodejs/node#56837summary
Until now, have not yet been confirmed as bug by nodejs and yarn.
Below is summary based on my current understanding of this problem.
I think
This is a nodejs + deno race condition bug when
sudo
This may called yarn berry bug, depends on individual preference.
brief
https://github.com/loynoir/reproduce-yarn-berry-6667
node
Because
yarn simulate
console OKWhich means
But
yarn reproduce
console mess up.yarn workaround
console OKWhich means
There is a way, I have not yet have time to extract logic out from yarn berry, leads to
sudo XXX
console is not isomprphic toXXX
console.There is also a way, let
sudo XXX
console isomprphic toXXX
consolesudo XXX
console is not always isomprphic toXXX
consoleI think
sudo
.yarn
Because
yarn reproduce
console mess up.yarn workaround
console OKyarn simulate
console OKI think
deno
Because
yarn workaround
console OKDISABLE_WORKAROUND=1 yarn workaround
console mess upI think
sudo
without async iterator.The text was updated successfully, but these errors were encountered: