Add support for Ubuntu 22 to Get-BinarySzies.ps1 (#4511)

This commit is contained in:
Daniel Jurek 2023-04-03 14:47:38 -07:00 committed by GitHub
parent c2e845266b
commit 02bb09aac1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -64,6 +64,10 @@ function getTargetOs {
return "ubuntu-20.04"
}
if ($OsVMImage -eq "MMSUbuntu22.04") {
return "ubuntu-22.04"
}
LogError "Could not infer target OS from " $OSVmImage
}