Skip to content

Commit 30336d1

Browse files
committed
fix
1 parent 0805659 commit 30336d1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/lint-source.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ jobs:
3131
- name: Lint the full source
3232
run: |
3333
pip install fortitude ansi2txt
34-
find ./src -type f -not -name '*nvtx*' -exec command fortitude check {} \;
35-
find ./src -type f -not -name '*nvtx*' -exec command fortitude check {} \; | wc -l | xargs -I{} sh -c '[ {} -gt 0 ] && exit 1 || exit 0'
34+
find ./src -type f -not -name '*nvtx*' -exec fortitude check {} \;
35+
find ./src -type f -not -name '*nvtx*' -exec fortitude check {} \; | wc -l | xargs -I{} sh -c '[ {} -gt 0 ] && exit 1 || exit 0'
3636
3737
- name: No double precision intrinsics
3838
run: |

0 commit comments

Comments
 (0)