Fix usdcat verification - use --help instead of --version

usdcat doesn't support --version flag. It requires input files and
exits with error "inputFiles is required" when run without arguments.

Changed all verification steps to use `usdcat --help` which properly
displays the help text and exits with success.
This commit is contained in:
Syoyo Fujita
2026-01-11 00:13:27 +09:00
parent 7b4d1b04fb
commit d308b9204b
3 changed files with 4 additions and 4 deletions

View File

@@ -143,7 +143,7 @@ jobs:
- name: Verify OpenUSD installation - name: Verify OpenUSD installation
run: | run: |
usdcat --version || usdcat --help usdcat --help
echo "OpenUSD binary: $(which usdcat)" echo "OpenUSD binary: $(which usdcat)"
- name: Test TinyUSDZ and OpenUSD interoperability - name: Test TinyUSDZ and OpenUSD interoperability
@@ -308,7 +308,7 @@ jobs:
- name: Verify OpenUSD installation (ARM64) - name: Verify OpenUSD installation (ARM64)
run: | run: |
usdcat --version || usdcat --help usdcat --help
echo "OpenUSD binary: $(which usdcat)" echo "OpenUSD binary: $(which usdcat)"
- name: Test TinyUSDZ and OpenUSD interoperability (ARM64) - name: Test TinyUSDZ and OpenUSD interoperability (ARM64)

View File

@@ -50,7 +50,7 @@ jobs:
- name: Verify OpenUSD installation (macOS ARM64) - name: Verify OpenUSD installation (macOS ARM64)
run: | run: |
usdcat --version || usdcat --help usdcat --help
echo "OpenUSD binary: $(which usdcat)" echo "OpenUSD binary: $(which usdcat)"
- name: Test TinyUSDZ and OpenUSD interoperability (macOS ARM64) - name: Test TinyUSDZ and OpenUSD interoperability (macOS ARM64)

View File

@@ -59,7 +59,7 @@ jobs:
- name: Verify OpenUSD installation (Windows x64) - name: Verify OpenUSD installation (Windows x64)
run: | run: |
usdcat --version usdcat --help
Write-Host "OpenUSD binary location: $(Get-Command usdcat | Select-Object -ExpandProperty Source)" Write-Host "OpenUSD binary location: $(Get-Command usdcat | Select-Object -ExpandProperty Source)"
- name: Test TinyUSDZ and OpenUSD interoperability (Windows x64) - name: Test TinyUSDZ and OpenUSD interoperability (Windows x64)