Skip to content

Commit 410bf47

Browse files
committed
Fix grep exit code in license check
1 parent ca81b06 commit 410bf47

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838

3939
- name: Check license headers (REUSE)
4040
run: |
41-
outputs=$(reuse lint --lines | grep -v -e "src/cuda/tile/VERSION")
41+
outputs=$(reuse lint --lines | grep -v -e "src/cuda/tile/VERSION" || true)
4242
if [ -n "$outputs" ]; then
4343
echo -e "License check failed\n${outputs}"
4444
exit 1

0 commit comments

Comments
 (0)