https://github.com/torvalds/linux
Raw File
Tip revision: f0c4d9fc9cc9462659728d168387191387e903cc authored by Linus Torvalds on 06 November 2022, 23:07:11 UTC
Linux 6.1-rc4
Tip revision: f0c4d9f
spdxcheck-test.sh
#!/bin/sh

# run check on a text and a binary file
for FILE in Makefile Documentation/images/logo.gif; do
	python3 scripts/spdxcheck.py $FILE
	python3 scripts/spdxcheck.py - < $FILE
done

# run check on complete tree to catch any other issues
python3 scripts/spdxcheck.py > /dev/null
back to top