We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f55253 commit ef0c5dbCopy full SHA for ef0c5db
LambdaRuntimeDockerfiles/update-dockerfile.ps1
@@ -12,7 +12,7 @@ function Update-Dockerfile ([string]$DockerfilePath, [string]$NextVersion) {
12
13
$checksumUri = "https://dotnetcli.blob.core.windows.net/dotnet/checksums/${NextVersion}-sha.txt"
14
15
- if ($NextVersion -match "^(\d+\.\d+\.\d+-preview\.\d+)") {
+ if ($NextVersion -match "^(\d+\.\d+\.\d+-preview\.\d+)" -or $NextVersion -match "^(\d+\.\d+\.\d+-rc\.\d+)" ) {
16
$matchedVersion = $matches[1]
17
$checksumUri = "https://dotnetcli.blob.core.windows.net/dotnet/checksums/${matchedVersion}-sha.txt"
18
}
0 commit comments