From dfb2b0e07688f75a5926ab380856105781fafd8a Mon Sep 17 00:00:00 2001 From: xtqqczze <45661989+xtqqczze@users.noreply.github.com> Date: Tue, 14 Oct 2025 20:03:18 +0100 Subject: [PATCH] Fix SC2068: Double quote array expansions to avoid re-splitting elements https://www.shellcheck.net/wiki/SC2068 --- build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sh b/build.sh index 84a7478bfa5..1dfb5c398c5 100755 --- a/build.sh +++ b/build.sh @@ -13,4 +13,4 @@ while [[ -h $source ]]; do done scriptroot="$( cd -P "$( dirname "$source" )" && pwd )" -"$scriptroot/eng/common/build.sh" --restore --build $@ +"$scriptroot/eng/common/build.sh" --restore --build "$@"