2018-12-28 16:31:32 +08:00
|
|
|
#!/bin/sh
|
|
|
|
|
2021-07-08 05:06:00 +08:00
|
|
|
# run check on a text and a binary file
|
2022-05-28 23:31:31 +08:00
|
|
|
for FILE in Makefile Documentation/images/logo.gif; do
|
2021-07-08 05:06:00 +08:00
|
|
|
python3 scripts/spdxcheck.py $FILE
|
|
|
|
python3 scripts/spdxcheck.py - < $FILE
|
2018-12-28 16:31:32 +08:00
|
|
|
done
|
2021-07-08 05:06:00 +08:00
|
|
|
|
|
|
|
# run check on complete tree to catch any other issues
|
|
|
|
python3 scripts/spdxcheck.py > /dev/null
|