10000 gh-127503: Emscripten make Python.sh function as proper Python CLI by hoodmane · Pull Request #127506 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-127503: Emscripten make Python.sh function as proper Python CLI #127506

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 our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 15 commits into from
Dec 5, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix NODEFLAGS reference
  • Loading branch information
hoodmane committed Dec 2, 2024
commit 351aa4f1e701331ae69c7d23ea9a4e768aa4707f
2 changes: 1 addition & 1 deletion Tools/wasm/emscripten/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ def configure_emscripten_python(context, working_dir):
# We compute our own path, not following symlinks and pass it in so that
# node_entry.mjs can set sys.executable correctly.
# Intentionally allow word splitting on NODEFLAGS.
exec {host_runner} {node_entry} ${NODEFLAGS} "$($REALPATH "$0")" "$@"
exec {host_runner} {node_entry} $NODEFLAGS "$($REALPATH "$0")" "$@"
"""
)
)
Expand Down
Loading
0