Update dependencies from https://github.com/dotnet/arcade build 20190731.19 (#3696)
- Microsoft.DotNet.Arcade.Sdk - 1.0.0-beta.19381.19
This commit is contained in:
parent
9f66f3c862
commit
ea7eb6571e
6 changed files with 128 additions and 7 deletions
|
@ -70,8 +70,7 @@ function ReadGlobalJsonNativeTools {
|
|||
# Only extract the contents of the object.
|
||||
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 "$native_tools_list" | sed 's/\s//g' | sed 's/,/\n/g' )
|
||||
|
||||
local old_IFS=$IFS
|
||||
while read -r line; do
|
||||
|
@ -108,6 +107,7 @@ else
|
|||
installer_command+=" --baseuri $base_uri"
|
||||
installer_command+=" --installpath $install_bin"
|
||||
installer_command+=" --version $tool_version"
|
||||
echo $installer_command
|
||||
|
||||
if [[ $force = true ]]; then
|
||||
installer_command+=" --force"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue