spdxcheck-test.sh 284 B

12345678910
  1. #!/bin/sh
  2. # run check on a text and a binary file
  3. for FILE in Makefile Documentation/images/logo.gif; do
  4. python3 scripts/spdxcheck.py $FILE
  5. python3 scripts/spdxcheck.py - < $FILE
  6. done
  7. # run check on complete tree to catch any other issues
  8. python3 scripts/spdxcheck.py > /dev/null