Skip to content

Commit 044e281

Browse files
Minor corrections according to comments
1 parent 588fb9d commit 044e281

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/python-builder.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
foreach ($configuration in $configurations) {
4545
$parts = $configuration.Split("_")
4646
$os = $parts[0]
47-
$arch = $(if ($parts[1]) {$parts[1]} else {"x64"})
47+
$arch = if ($parts[1]) {$parts[1]} else {"x64"}
4848
switch -wildcard ($os) {
4949
"*ubuntu*" { $platform = $os.Replace("ubuntu","linux")}
5050
"*macos*" { $platform = 'darwin' }

0 commit comments

Comments
 (0)