diff options
| author | Miguel Ojeda <[email protected]> | 2022-05-28 17:31:31 +0200 |
|---|---|---|
| committer | Jonathan Corbet <[email protected]> | 2022-06-01 09:32:45 -0600 |
| commit | fae35da4ace3721dfba1b3986a9239fc85cf8c72 (patch) | |
| tree | 0b0faff5b7e57fa0361c390cc139a42eee546ed5 /scripts | |
| parent | 938285a130ecafd9da71f6a28058722bb831b31d (diff) | |
docs: move Linux logo into a new `images` folder
Having assets in the top-level `Documentation` directory can make
it harder to find the documents one needs, especially if we want
to add more of them later on.
Instead, create a new `images` folder inside it that is used
to hold assets such as logos.
In addition, update the reference in `scripts/spdxcheck-test.sh`.
Link: https://lore.kernel.org/lkml/[email protected]/
Suggested-by: Jonathan Corbet <[email protected]>
Signed-off-by: Miguel Ojeda <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Jonathan Corbet <[email protected]>
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 |