Skip to content
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

Store all args in the unsupported Command implementation #123633

Merged
merged 2 commits into from
Apr 10, 2024

Commits on Apr 8, 2024

  1. Store all args in the unsupported Command implementation

    This allows printing them in the Debug impl as well as getting them
    again using the get_args() method. This allows programs that would
    normally spawn another process to more easily show which program they
    would have spawned if not for the fact that the target doesn't support
    spawning child processes without requiring intrusive changes to keep the
    args. For example rustc compiled to wasi will show the full linker
    invocation that would have been done.
    bjorn3 committed Apr 8, 2024
    Configuration menu
    Copy the full SHA
    bbd82ff View commit details
    Browse the repository at this point in the history

Commits on Apr 9, 2024

  1. Fix dead code warning

    bjorn3 committed Apr 9, 2024
    Configuration menu
    Copy the full SHA
    b4a395b View commit details
    Browse the repository at this point in the history