Merge pull request #3956 from dotnet/piotrpMSFT/fixbuild

Full verbosity for build_tools restore
This commit is contained in:
Piotr Puszkiewicz 2016-07-28 02:41:43 -04:00 committed by GitHub
commit 4d21dc40cf

View file

@ -35,7 +35,7 @@ if [ ! -e "$__PROJECT_JSON_FILE" ]; then
if [ ! -d "$__BUILD_TOOLS_PATH" ]; then
echo "Restoring build tools version $__BUILD_TOOLS_PACKAGE_VERSION..."
"$__DOTNET_CMD" restore "$__PROJECT_JSON_FILE" --packages "$NUGET_PACKAGES" --source "$__BUILD_TOOLS_SOURCE" >> "$__init_tools_log" 2>&1
"$__DOTNET_CMD" restore "$__PROJECT_JSON_FILE" --packages "$NUGET_PACKAGES" --source "$__BUILD_TOOLS_SOURCE"
"$__BUILD_TOOLS_PATH/init-tools.sh"
fi