Skip to content

Commit e19d8a8

Browse files
Oops
1 parent d4f2eba commit e19d8a8

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/VAD-compile-and-sign.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ jobs:
147147
148148
if ($inf2catPath -and (Test-Path $infFile)) {
149149
Write-Host "Found inf2cat at: $inf2catPath"
150-
$osArch = if (${{ matrix.platform }} -eq "ARM64") { "10_ARM64" } else { "10_x64" }
150+
$osArch = if ("${{ matrix.platform }}" -eq "ARM64") { "10_ARM64" } else { "10_x64" }
151151
& $inf2catPath /driver:"$packageDir" /os:"$osArch" /verbose
152152
Write-Host "Catalog generation completed"
153153
} else {

.github/workflows/VAD-compile.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ jobs:
147147
148148
if ($inf2catPath -and (Test-Path $infFile)) {
149149
Write-Host "Found inf2cat at: $inf2catPath"
150-
$osArch = if (${{ matrix.platform }} -eq "ARM64") { "10_ARM64" } else { "10_x64" }
150+
$osArch = if ("${{ matrix.platform }}" -eq "ARM64") { "10_ARM64" } else { "10_x64" }
151151
& $inf2catPath /driver:"$packageDir" /os:"$osArch" /verbose
152152
Write-Host "Catalog generation completed"
153153
} else {

0 commit comments

Comments
 (0)