diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2022-06-03 01:36:06 +0300 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2022-06-03 01:36:06 +0300 |
commit | 50fd82b3a9a9335df5d50c7ddcb81c81d358c4fc (patch) | |
tree | 07ebaa0d94a5e6159423e1f73cd012b1f0e118a5 /scripts | |
parent | baf86ac1c9ccbde281df55a4daeefadec6d2e581 (diff) | |
parent | a27e51b45e1bc57f15cffd6b9bfc38efef8cc419 (diff) | |
download | linux-50fd82b3a9a9335df5d50c7ddcb81c81d358c4fc.tar.xz |
Merge tag 'docs-5.19-2' of git://git.lwn.net/linux
Pull documentation fixes from Jonathan Corbet:
"A handful of late-arriving documentation fixes and the addition of an
SVG tux logo which, I'm assured, we're going to want"
* tag 'docs-5.19-2' of git://git.lwn.net/linux:
documentation: Format button_dev as a pointer.
docs: add SVG version of the Linux logo
docs: move Linux logo into a new `images` folder
docs: blockdev: change title to match section content
docs/conf.py: Cope with removal of language=None in Sphinx 5.0.0
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/spdxcheck-test.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/spdxcheck-test.sh b/scripts/spdxcheck-test.sh index cb76324756bd..9f6d1a74da6e 100644 --- a/scripts/spdxcheck-test.sh +++ b/scripts/spdxcheck-test.sh @@ -1,7 +1,7 @@ #!/bin/sh # run check on a text and a binary file -for FILE in Makefile Documentation/logo.gif; do +for FILE in Makefile Documentation/images/logo.gif; do python3 scripts/spdxcheck.py $FILE python3 scripts/spdxcheck.py - < $FILE done |