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 ad6ac51 commit d4fcc56
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion builders/win-python-builder.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ class WinPythonBuilder : PythonBuilder {
[string] GetNuGetPackageName() {
$packageName = "python"
$arch = $this.GetHardwareArchitecture()
if (arch -ne "x64") {
if ($arch -ne "x64") {
$packageName = "${packageName}${arch}"
}
if ($this.IsFreeThreaded()) {
Expand Down

0 comments on commit d4fcc56

Please sign in to comment.