Cut down on the amount of output generated by dependency fetching scripts

This commit is contained in:
Taryn Hill
2017-02-15 21:14:09 -06:00
parent ab161c0a24
commit 9329ee4780
2 changed files with 13 additions and 13 deletions

View File

@@ -17,7 +17,7 @@ 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 -Verbosity quiet
}
else
get()