Skip to content

Commit

Permalink
Merge pull request #141 from dotnet/darc-master-23d7f4e9-27ee-4ddb-a0…
Browse files Browse the repository at this point in the history
…7c-e7328b77f3a9

[master] Update dependencies from dotnet/arcade
  • Loading branch information
sfoslund authored Apr 23, 2020
2 parents 8b45ca0 + eb75247 commit b1fe7b6
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 4 deletions.
4 changes: 2 additions & 2 deletions eng/Version.Details.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
<ProductDependencies>
</ProductDependencies>
<ToolsetDependencies>
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="1.0.0-beta.20202.9">
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="1.0.0-beta.20218.1">
<Uri>https://github.com/dotnet/arcade</Uri>
<Sha>f6dc83c016f91377a2f3f3d44f08f326652a0337</Sha>
<Sha>b16cd6899775d52db4d4ac255908853bf4ee8833</Sha>
</Dependency>
</ToolsetDependencies>
</Dependencies>
9 changes: 8 additions & 1 deletion eng/common/tools.sh
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,14 @@ function InstallDotNet {

local runtimeSourceFeedKey=''
if [[ -n "${7:-}" ]]; then
decodedFeedKey=`echo $7 | base64 --decode`
# The 'base64' binary on alpine uses '-d' and doesn't support '--decode'
# '-d'. To work around this, do a simple detection and switch the parameter
# accordingly.
decodeArg="--decode"
if base64 --help 2>&1 | grep -q "BusyBox"; then
decodeArg="-d"
fi
decodedFeedKey=`echo $7 | base64 $decodeArg`
runtimeSourceFeedKey="--feed-credential $decodedFeedKey"
fi

Expand Down
2 changes: 1 addition & 1 deletion global.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
"dotnet": "3.1.102"
},
"msbuild-sdks": {
"Microsoft.DotNet.Arcade.Sdk": "1.0.0-beta.20202.9"
"Microsoft.DotNet.Arcade.Sdk": "1.0.0-beta.20218.1"
}
}

0 comments on commit b1fe7b6

Please sign in to comment.