Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
bootstrap.sh: Fix more SC2086 warnings
Just quote the things Shellcheck warnings were: In bootstrap-scripts/bootstrap.sh line 128: kill -TERM $timeout_loop_PID ^---------------^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: kill -TERM "$timeout_loop_PID" In bootstrap-scripts/bootstrap.sh line 185: rustup default stable-${machine}-apple-darwin ^--------^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: rustup default stable-"${machine}"-apple-darwin
- Loading branch information