Back to home page

OSCL-LXR

 
 

    


0001 #!/bin/sh
0002 
0003 # run check on a text and a binary file
0004 for FILE in Makefile Documentation/images/logo.gif; do
0005         python3 scripts/spdxcheck.py $FILE
0006         python3 scripts/spdxcheck.py - < $FILE
0007 done
0008 
0009 # run check on complete tree to catch any other issues
0010 python3 scripts/spdxcheck.py > /dev/null