Skip to content

Commit

Permalink
Do not lint verbatim copy of LICENSE.OpenSSL
Browse files Browse the repository at this point in the history
  • Loading branch information
DimitriPapadopoulos committed Dec 20, 2023
1 parent 1b7a325 commit de959f4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/openfortivpn.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
run: ./tests/lint/checkpatch.sh $(git ls-files '*.[ch]')

- name: EOL at EOF
run: ./tests/lint/eol-at-eof.sh $(git ls-files)
run: ./tests/lint/eol-at-eof.sh $(git ls-files | grep -v LICENSE.OpenSSL)

- name: Line Length
run: ./tests/lint/line_length.py $(git ls-files '*.[ch]')
Expand Down
2 changes: 1 addition & 1 deletion tests/lint/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

rc=0

./tests/lint/eol-at-eof.sh $(git ls-files) || rc=1
./tests/lint/eol-at-eof.sh $(git ls-files | grep -v LICENSE.OpenSSL) || rc=1

./tests/lint/line_length.py $(git ls-files '*.[ch]') || rc=1

Expand Down

0 comments on commit de959f4

Please sign in to comment.