Skip to content

Commit

Permalink
Update win-python-builder.psm1
Browse files Browse the repository at this point in the history
  • Loading branch information
mayeut committed Nov 10, 2024
1 parent a039bd2 commit 404d797
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions builders/win-python-builder.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@ class WinPythonBuilder : PythonBuilder {
[string] $platform
) : Base($version, $architecture, $platform) {
if ($this.IsFreeThreaded()) {
$this.UseNuGet = true
$this.UseNuGet = $true
}
else {
$this.UseNuGet = false
$this.UseNuGet = $false
}
if ($this.UseNuGet) {
$this.InstallationTemplateName = "win-nuget-template.ps1"
Expand Down

0 comments on commit 404d797

Please sign in to comment.