Skip to content

Commit

Permalink
Fix transcription error inlining post-bugsplat-windows/action.yaml.
Browse files Browse the repository at this point in the history
The copied logic replaced:
```
cd _artifacts
tar -xJf ...
```
with the one-liner:
```
tar -xJf ... -C _artifacts
```
The trouble is that `tar`'s `-C` switch is order-sensitive: it affects the
options that *follow* it on the command line.
  • Loading branch information
nat-goodspeed committed Feb 4, 2025
1 parent 307004c commit ba0b771
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -394,8 +394,7 @@ jobs:
- name: Extract viewer pdb
if: env.BUGSPLAT_USER && env.BUGSPLAT_PASS
shell: bash
run: |
tar -xJf "${{ needs.build.outputs.viewer_channel }}.sym.tar.xz" -C _artifacts
run: tar -C _artifacts -xJf "${{ needs.build.outputs.viewer_channel }}.sym.tar.xz"
- name: Post Windows symbols
if: env.BUGSPLAT_USER && env.BUGSPLAT_PASS
uses: secondlife-3p/symbol-upload@v10
Expand Down

0 comments on commit ba0b771

Please sign in to comment.