Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Quote environ when injecting into crates vendor wrapper (#3078)
Slight tweak to the logic in #2862 (cc: @UebelAndre) My `$PATH` variable has spaces in it and I hit an error like ``` env: Support/JetBrains/Toolbox/scripts:/Users/ryanpbrewster/.bin:/Users/ryanpbrewster/config/bin:/Users/ryanpbrewster/.local/bin:/Applications/Visual: No such file or directory ``` If I manually modify `bazel-bin/rust/crates_vendor.sh` to modify ``` exec env - \ ${_ENVIRON[@]} \ ``` into ``` exec env - \ "${_ENVIRON[@]}" \ ``` it starts working.
- Loading branch information