Skip to content

Commit

Permalink
don't double escape windows path delimiter
Browse files Browse the repository at this point in the history
  • Loading branch information
2bndy5 committed Dec 8, 2023
1 parent dde50a6 commit 2fea8ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/cpp-lint-action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
files-changed-only: false
# to ignore all build folder contents
ignore: build
database: ${{github.workspace}}${{runner.os == 'Windows' && '\\' || '/'}}build
database: ${{github.workspace}}${{runner.os == 'Windows' && '\' || '/'}}build
verbosity: 9
version: ${{ matrix.clang-version }}
thread-comments: ${{ matrix.clang-version == '12' }}
Expand Down

0 comments on commit 2fea8ee

Please sign in to comment.