diff options
| author | Daiki Ihara <sasurau4@gmail.com> | 2020-11-02 21:17:52 +0900 |
|---|---|---|
| committer | Daiki Ihara <sasurau4@gmail.com> | 2020-11-06 20:33:12 +0900 |
| commit | a1af001a551f382a1962276640e4455b40f7936b (patch) | |
| tree | ad4894dd5ef8c32ddcd5c329dfd35ffcf3da94ca /compiler/rustc_codegen_cranelift/scripts | |
| parent | ce4c124292cfa310d05c2fc48e162df1417c8a2c (diff) | |
| download | rust-a1af001a551f382a1962276640e4455b40f7936b.tar.gz rust-a1af001a551f382a1962276640e4455b40f7936b.zip | |
fix shellcheck error of SC2068
Diffstat (limited to 'compiler/rustc_codegen_cranelift/scripts')
| -rwxr-xr-x | compiler/rustc_codegen_cranelift/scripts/cargo.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/rustc_codegen_cranelift/scripts/cargo.sh b/compiler/rustc_codegen_cranelift/scripts/cargo.sh index e63daa40f35..947b4a28798 100755 --- a/compiler/rustc_codegen_cranelift/scripts/cargo.sh +++ b/compiler/rustc_codegen_cranelift/scripts/cargo.sh @@ -10,7 +10,7 @@ cmd=$1 shift || true if [[ "$cmd" = "jit" ]]; then -cargo +${TOOLCHAIN} rustc $@ -- --jit +cargo +${TOOLCHAIN} rustc "$@" -- --jit else -cargo +${TOOLCHAIN} $cmd $@ +cargo +${TOOLCHAIN} $cmd "$@" fi |
