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

Fix dev-scripts/split-cmdline: quote ';' arguments #73287

Merged
merged 1 commit into from
May 23, 2024

Commits on Apr 26, 2024

  1. Fix dev-scripts/split-cmdline: quote ';' arguments

    When printing an argument that contains ';', add back
    the quotes that are normally stripped.
    
    I regularly waste half a day building Swift only to find that I built
    the wrong thing because everything after the semicolon is dropped from
    the build script when it contains arguments like this:
    
    '--llvm-install-components=libclang;libclang-headers'
    
    Ideally, split-cmdline would just preserve the original quotes. But
    this quick fix solves the problem in the cases that I care about.
    atrick committed Apr 26, 2024
    Configuration menu
    Copy the full SHA
    a60f5c4 View commit details
    Browse the repository at this point in the history