File tree Expand file tree Collapse file tree 4 files changed +19
-12
lines changed Expand file tree Collapse file tree 4 files changed +19
-12
lines changed Original file line number Diff line number Diff line change 413
413
<Uri >https://github.com/dotnet/extensions</Uri >
414
414
<Sha >cf044102f01a3402a680fa58cabea8a9ca53aa3d</Sha >
415
415
</Dependency >
416
- <Dependency Name =" Microsoft.DotNet.GenAPI" Version =" 1.0.0-beta.20113.5 " >
416
+ <Dependency Name =" Microsoft.DotNet.GenAPI" Version =" 1.0.0-beta.20213.4 " >
417
417
<Uri >https://github.com/dotnet/arcade</Uri >
418
- <Sha >15f00efd583eab4372b2e9ca25bd80ace5b119ad </Sha >
418
+ <Sha >1a55276ab9d16792cec595ba870df39a9d97d5ca </Sha >
419
419
</Dependency >
420
- <Dependency Name =" Microsoft.DotNet.Arcade.Sdk" Version =" 1.0.0-beta.20113.5 " >
420
+ <Dependency Name =" Microsoft.DotNet.Arcade.Sdk" Version =" 1.0.0-beta.20213.4 " >
421
421
<Uri >https://github.com/dotnet/arcade</Uri >
422
- <Sha >15f00efd583eab4372b2e9ca25bd80ace5b119ad </Sha >
422
+ <Sha >1a55276ab9d16792cec595ba870df39a9d97d5ca </Sha >
423
423
</Dependency >
424
- <Dependency Name =" Microsoft.DotNet.Helix.Sdk" Version =" 2.0.0-beta.20113.5 " >
424
+ <Dependency Name =" Microsoft.DotNet.Helix.Sdk" Version =" 2.0.0-beta.20213.4 " >
425
425
<Uri >https://github.com/dotnet/arcade</Uri >
426
- <Sha >15f00efd583eab4372b2e9ca25bd80ace5b119ad </Sha >
426
+ <Sha >1a55276ab9d16792cec595ba870df39a9d97d5ca </Sha >
427
427
</Dependency >
428
428
<Dependency Name =" Microsoft.AspNetCore.Testing" Version =" 3.1.4-servicing.20181.5" CoherentParentDependency =" Microsoft.EntityFrameworkCore" >
429
429
<Uri >https://github.com/dotnet/extensions</Uri >
434
434
<Sha >d8180a5ecafb92adcfbfe8cf9199eb23be1a1ccf</Sha >
435
435
</Dependency >
436
436
</ToolsetDependencies >
437
- </Dependencies >
437
+ </Dependencies >
Original file line number Diff line number Diff line change 62
62
-->
63
63
<PropertyGroup Label =" Automated" >
64
64
<!-- Packages from dotnet/arcade -->
65
- <MicrosoftDotNetGenAPIPackageVersion >1.0.0-beta.20113.5 </MicrosoftDotNetGenAPIPackageVersion >
65
+ <MicrosoftDotNetGenAPIPackageVersion >1.0.0-beta.20213.4 </MicrosoftDotNetGenAPIPackageVersion >
66
66
<!-- Packages from dotnet/roslyn -->
67
67
<MicrosoftNetCompilersToolsetPackageVersion >3.4.1-beta4-20127-10</MicrosoftNetCompilersToolsetPackageVersion >
68
68
<!-- Packages from dotnet/core-setup -->
271
271
<DotNetAssetRootUrl Condition =" '$(DotNetAssetRootUrl)'==''" >https://dotnetcli.blob.core.windows.net/dotnet/</DotNetAssetRootUrl >
272
272
<DotNetPrivateAssetRootUrl Condition =" '$(DotNetPrivateAssetRootUrl)'==''" >https://dotnetclimsrc.blob.core.windows.net/dotnet/</DotNetPrivateAssetRootUrl >
273
273
</PropertyGroup >
274
- </Project >
274
+ </Project >
Original file line number Diff line number Diff line change @@ -210,7 +210,14 @@ function InstallDotNet {
210
210
211
211
local runtimeSourceFeedKey=' '
212
212
if [[ -n " ${7:- } " ]]; then
213
- decodedFeedKey=` echo $7 | base64 --decode`
213
+ # The 'base64' binary on alpine uses '-d' and doesn't support '--decode'
214
+ # '-d'. To work around this, do a simple detection and switch the parameter
215
+ # accordingly.
216
+ decodeArg=" --decode"
217
+ if base64 --help 2>&1 | grep -q " BusyBox" ; then
218
+ decodeArg=" -d"
219
+ fi
220
+ decodedFeedKey=` echo $7 | base64 $decodeArg `
214
221
runtimeSourceFeedKey=" --feed-credential $decodedFeedKey "
215
222
fi
216
223
Original file line number Diff line number Diff line change 25
25
},
26
26
"msbuild-sdks" : {
27
27
"Yarn.MSBuild" : " 1.15.2" ,
28
- "Microsoft.DotNet.Arcade.Sdk" : " 1.0.0-beta.20113.5 " ,
29
- "Microsoft.DotNet.Helix.Sdk" : " 2.0.0-beta.20113.5 "
28
+ "Microsoft.DotNet.Arcade.Sdk" : " 1.0.0-beta.20213.4 " ,
29
+ "Microsoft.DotNet.Helix.Sdk" : " 2.0.0-beta.20213.4 "
30
30
}
31
31
}
You can’t perform that action at this time.
0 commit comments