Skip to content

Commit 52de343

Browse files
committed
create empty FileID for x86
1 parent 0c956dd commit 52de343

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

script/vsts/platforms/windows.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,10 @@ jobs:
4040
- pwsh: |
4141
if ($env:BUILD_ARCH -eq "x64") {
4242
$env:FileID="-x64"
43-
echo "##vso[task.setvariable variable=FileID]$env:FileID" # Azure syntax
43+
} else {
44+
$env:FileID=""
4445
}
46+
echo "##vso[task.setvariable variable=FileID]$env:FileID" # Azure syntax
4547
env:
4648
BUILD_ARCH: $(buildArch)
4749
displayName: Set FileID based on the arch

0 commit comments

Comments
 (0)