From 9a18e6fdb9312615608f6be0f366f25e8b4367ec Mon Sep 17 00:00:00 2001 From: Reuben Miller Date: Tue, 14 May 2024 07:26:05 +0200 Subject: [PATCH] fixup! prevent globbing and word splitting. SC2086 --- mk/cargo.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mk/cargo.sh b/mk/cargo.sh index 7fa07d695d..d7a0d50763 100755 --- a/mk/cargo.sh +++ b/mk/cargo.sh @@ -251,7 +251,7 @@ cargo "$@" if [ -n "${RING_COVERAGE-}" ]; then # Keep in sync with check-symbol-prefixes.sh. # Use the host target-libdir, not the target target-libdir. - llvm_root="$(rustc +"${toolchain}" --print target-libdir)/../bin" + llvm_root=$(rustc +"${toolchain}" --print target-libdir)/../bin while read -r executable; do basename=$(basename "$executable")