[master] Update dependencies from dotnet/arcade (#3314)

* Update dependencies from https://github.com/dotnet/arcade build 20190717.8

- Microsoft.DotNet.Arcade.Sdk - 1.0.0-beta.19367.8

* Update dependencies from https://github.com/dotnet/arcade build 20190718.7

- Microsoft.DotNet.Arcade.Sdk - 1.0.0-beta.19368.7
This commit is contained in:
dotnet-maestro[bot] 2019-07-19 12:39:46 +00:00 committed by GitHub
parent 35a1c71040
commit 6fa4b0bcd0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 91 additions and 22 deletions

View file

@ -71,7 +71,7 @@ function ReadGlobalJsonNativeTools {
local native_tools_list=$(echo $native_tools_section | awk -F"[{}]" '{print $2}')
native_tools_list=${native_tools_list//[\" ]/}
native_tools_list=${native_tools_list//,/$'\n'}
native_tools_list="$(echo -e "${native_tools_list}" | tr -d '[:space:]')"
native_tools_list="$(echo -e "${native_tools_list}" | tr -d '[[:space:]]')"
local old_IFS=$IFS
while read -r line; do