We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents d6f457d + 07aef90 commit 8a097f7Copy full SHA for 8a097f7
scripts/cargo.sh
@@ -10,7 +10,7 @@ cmd=$1
10
shift || true
11
12
if [[ "$cmd" = "jit" ]]; then
13
-cargo +${TOOLCHAIN} rustc $@ -- --jit
+cargo +${TOOLCHAIN} rustc "$@" -- --jit
14
else
15
-cargo +${TOOLCHAIN} $cmd $@
+cargo +${TOOLCHAIN} $cmd "$@"
16
fi
scripts/config.sh
@@ -1,3 +1,4 @@
1
+#!/usr/bin/env bash
2
set -e
3
4
unamestr=`uname`
test.sh
@@ -3,13 +3,13 @@ set -e
export RUSTFLAGS="-Zrun_dsymutil=no"
5
6
-./build.sh --without-sysroot $@
+./build.sh --without-sysroot "$@"
7
8
rm -r target/out || true
9
scripts/tests.sh no_sysroot
-./build.sh $@
+./build.sh "$@"
scripts/tests.sh base_sysroot
scripts/tests.sh extended_sysroot
0 commit comments