swh:1:snp:32555a3fd8878f019c2ebd6c964bc1edcaeff337
Raw File
Tip revision: 7c53f6b671f4aba70ff15e1b05148b10d58c2837 authored by Linus Torvalds on 10 January 2021, 22:34:50 UTC
Linux 5.11-rc3
Tip revision: 7c53f6b
spdxcheck-test.sh
#!/bin/sh

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

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