augment instead of replace the package source list when %PB_RestoreSource% is specified

This commit is contained in:
Brett V. Forsgren 2017-12-08 09:42:21 -08:00
Родитель 94c7fe1f15
Коммит 114e7e87b7
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -572,7 +572,7 @@ if "%RestorePackages%" == "true" (
%_ngenexe% install %_nugetexe% /nologo
set _nugetoptions=-PackagesDirectory packages -ConfigFile %_nugetconfig%
if not "%PB_RESTORESOURCE%" == "" (
set _nugetoptions=!_nugetoptions! -Source %PB_RESTORESOURCE%
set _nugetoptions=!_nugetoptions! -FallbackSource %PB_RESTORESOURCE%
)
echo _nugetoptions=!_nugetoptions!

Просмотреть файл

@ -450,7 +450,7 @@ if [ "${RestorePackages:-true}" = 'true' ]; then
_nugetoptions="-PackagesDirectory packages -ConfigFile $_nugetconfig"
if [ "$PB_RESTORESOURCE" != "" ]; then
_nugetoptions="$_nugetoptions -Source $PB_RESTORESOURCE"
_nugetoptions="$_nugetoptions -FallbackSource $PB_RESTORESOURCE"
fi
eval "$_nugetexe restore packages.config $_nugetoptions"