mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
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.