From f3490dd8e47d61f5bdb3d685ba63b507e6c83721 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matthias=20Mail=C3=A4nder?= Date: Sun, 26 Jul 2015 13:03:01 +0200 Subject: [PATCH] double quote to prevent globbing and word splitting detected by http://www.shellcheck.net/ --- thirdparty/fetch-thirdparty-deps.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/thirdparty/fetch-thirdparty-deps.sh b/thirdparty/fetch-thirdparty-deps.sh index 37450feb7b..6c900fa7e8 100755 --- a/thirdparty/fetch-thirdparty-deps.sh +++ b/thirdparty/fetch-thirdparty-deps.sh @@ -17,12 +17,12 @@ cd "${download_dir}" if [ ! $TRAVIS ] && which nuget >/dev/null 2>&1; then get() { - nuget install $1 -Version $2 -ExcludeVersion + nuget install "$1" -Version "$2" -ExcludeVersion } else get() { - ../noget.sh $1 $2 + ../noget.sh "$1" "$2" } fi