Update ci.yml, overwrite exit code 1 with 0 for robocopy

This commit is contained in:
Nicolas Kruse 2025-06-09 20:41:05 +02:00 committed by GitHub
parent f801568caa
commit b7198feb9a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -115,7 +115,7 @@ jobs:
- name: Copy and check directory structure of MiKTeX installation - name: Copy and check directory structure of MiKTeX installation
run: | run: |
robocopy miktex-portable miktex-run /E /NFL robocopy miktex-portable miktex-run /E /NFL
if ($LASTEXITCODE -ge 8) { exit $LASTEXITCODE } if ($LASTEXITCODE -eq 1) { exit 0 }
- name: Add miktex to PATH - name: Add miktex to PATH
run: | run: |