diff options
author | Roxie Linden <roxie@lindenlab.com> | 2024-08-05 23:16:48 -0700 |
---|---|---|
committer | Roxie Linden <roxie@lindenlab.com> | 2024-08-05 23:16:48 -0700 |
commit | 07573f7e10a9ce4df2c2a0f6c6eb5f0935da57a6 (patch) | |
tree | 7a0e3700771420ad35ea7f5a3ce9b621ce38fe6b /.github/workflows | |
parent | 946b165b99fe1cffbb756a6ee8ff3fa7af756cc6 (diff) |
allow paths with spaces
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/build.yaml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index c2abc503bb..cf14bac0a2 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -399,7 +399,7 @@ jobs: - name: Unpack Mac Symbols run: | mkdir _extracted - tar -xJf ${{ needs.build.outputs.viewer_channel }}.sym.tar.gz -C _extracted + tar -xJf "${{ needs.build.outputs.viewer_channel }}.sym.tar.gz" -C _extracted - name: Post Mac symbols if: env.BUGSPLAT_USER && env.BUGSPLAT_PASS uses: Bugsplat-Git/symbol-upload@v9.1.1 |