thirdparty/fetch-thirdparty-deps.sh: silence the nuget check

This commit is contained in:
Moviuro
2015-06-07 17:08:36 +02:00
parent e445cc4fce
commit 1f0c884654

View File

@@ -8,14 +8,17 @@ download_dir="${0%/*}/download"
mkdir -p "${download_dir}" mkdir -p "${download_dir}"
cd "${download_dir}" cd "${download_dir}"
get() if which nuget >/dev/null 2>&1; then
{ get()
if which nuget >/dev/null; then {
nuget install $1 -Version $2 -ExcludeVersion nuget install $1 -Version $2 -ExcludeVersion
else }
else
get()
{
../noget.sh $1 $2 ../noget.sh $1 $2
fi }
} fi
if [ ! -f StyleCopPlus.dll ]; then if [ ! -f StyleCopPlus.dll ]; then
echo "Fetching StyleCopPlus from NuGet" echo "Fetching StyleCopPlus from NuGet"