We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 787109d commit 9146735Copy full SHA for 9146735
.github/workflows/build-vi-package.yml
@@ -234,9 +234,9 @@ jobs:
234
id: find_vip
235
shell: pwsh
236
run: |
237
- $vipFile = Get-ChildItem -Path "builds/VI Package" -Filter "*.vip" -ErrorAction Stop | Select-Object -First 1
+ $vipFile = Get-ChildItem -Path "builds" -Filter "*.vip" -ErrorAction Stop | Select-Object -First 1
238
if (-not $vipFile) {
239
- Write-Host "No .vip file found in builds/VI Package!"
+ Write-Host "No .vip file found in builds!"
240
exit 1
241
}
242
Write-Host "Discovered VIP File: $($vipFile.FullName)"
0 commit comments