Address PR review.
This commit is contained in:
parent
572d68de7e
commit
9b80eda72a
1 changed files with 3 additions and 1 deletions
|
@ -458,7 +458,7 @@ namespace Microsoft.DotNet.Cli.Build
|
||||||
|
|
||||||
List<string> buildVersions = new List<string>();
|
List<string> buildVersions = new List<string>();
|
||||||
|
|
||||||
Regex buildVersionRegex = new Regex(@"Binaries/(?<version>\d+\.\d+\.\d+-[^-]+-\d{6})/$");
|
Regex buildVersionRegex = new Regex(@"Binaries/(?<version>\d+\.\d+\.\d+(?<prerelease>-[^-]+-\d{6})?)/$");
|
||||||
|
|
||||||
foreach (string file in AzurePublisherTool.ListBlobs(hostBlob))
|
foreach (string file in AzurePublisherTool.ListBlobs(hostBlob))
|
||||||
{
|
{
|
||||||
|
@ -535,7 +535,9 @@ namespace Microsoft.DotNet.Cli.Build
|
||||||
}
|
}
|
||||||
|
|
||||||
if (missingRuntime)
|
if (missingRuntime)
|
||||||
|
{
|
||||||
Console.WriteLine($"Build version {buildVersion} is missing some runtime packages so not pushing this drop.");
|
Console.WriteLine($"Build version {buildVersion} is missing some runtime packages so not pushing this drop.");
|
||||||
|
}
|
||||||
|
|
||||||
return !missingRuntime;
|
return !missingRuntime;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue