Update dependencies from https://github.com/dotnet/arcade build 20200130.4 (#6270)

- Microsoft.DotNet.Arcade.Sdk - 5.0.0-beta.20080.4
This commit is contained in:
dotnet-maestro[bot] 2020-01-31 13:40:40 +00:00 committed by GitHub
parent 63e9316a15
commit f8adf6b19e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 13 additions and 3 deletions

View file

@ -175,6 +175,16 @@ function Build {
InitializeCustomToolset
if [[ ! -z "$projects" ]]; then
# Split project paths by semi-colon, find full-paths using readlink,
# finally and splice back as a semi-colon separated list
IFS=';' read -r -a projs <<< "$projects"
len=${#projs[@]}
for ((i=0; i<$len; i++));
do
projs[$i]=$(readlink -f "${projs[$i]}");
done
projects=$(IFS=\; ; echo "${projs[*]}")
echo Updated projects: $projects
properties="$properties /p:Projects=$projects"
fi