double quote to prevent globbing and word splitting

detected by http://www.shellcheck.net/
This commit is contained in:
Matthias Mailänder
2015-07-26 13:03:01 +02:00
parent 0c2934a536
commit f3490dd8e4

View File

@@ -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