fix version check

This commit is contained in:
Sergey Dolin 2022-09-01 09:48:42 +02:00
parent 39fd250531
commit 49cfaf868c

View File

@ -142,9 +142,9 @@ class macOSPythonBuilder : NixPythonBuilder {
#>
Write-Host "Build Python *$($this.Version)* [$($this.Architecture)]"
Write-Host ($this.Version -ge "3.11.0")
Write-Host ($this.Version -ge 3.11.0)
if ($this.Version -ge "3.11.0") {
if ($this.Version -ge 3.11.0) {
Write-Host "Download Python $($this.Version) [$($this.Architecture)] package..."
$this.DownloadPkg()