We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 517c3fc commit 6e8010aCopy full SHA for 6e8010a
.github/workflows/build.yml
@@ -53,9 +53,9 @@ jobs:
53
- name: Delete PDB files
54
working-directory: Source/${{ env.SOLUTION_DIR }}
55
run: |
56
- if [[ "${{ runners.os }}" == 'Linux' ]]; then
+ if [[ "${{ runner.os }}" == 'Linux' ]]; then
57
find . -name '*.pdb' -delete
58
- elif [[ "${{ runners.os }}" == 'Windows' ]]; then
+ elif [[ "${{ runner.os }}" == 'Windows' ]]; then
59
del /Q /F *.pdb
60
fi
61
0 commit comments