Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork32k
silence system utils tests in emscripten python.sh#133044
New issue
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
silence system utils tests in emscripten python.sh#133044
Uh oh!
There was an error while loading.Please reload this page.
Conversation
Most changes to Pythonrequire a NEWS entry. Add one using theblurb_it web app or theblurb command-line tool. If this change has little impact on Python users, wait for a maintainer to apply the |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others.Learn more.
Looks like a good improvement to me - Thanks for the fix!
146b981
intopython:mainUh oh!
There was an error while loading.Please reload this page.
When running the generated
python.sh
an a system withoutgrealpath
(like Linux),which
prints to stderr and pollutes the console with an unnecessary error message:where
<$PATH>
is the system path which may span multiple lines.This PR redirects all output to /dev/null, since we're only interested in the return code anyways.