Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix transcription error inlining post-bugsplat-windows/action.yaml.
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