thirdparty/fetch-thirdparty-deps.sh: silence the nuget check
This commit is contained in:
15
thirdparty/fetch-thirdparty-deps.sh
vendored
15
thirdparty/fetch-thirdparty-deps.sh
vendored
@@ -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"
|
||||||
|
|||||||
Reference in New Issue
Block a user