Files

11 lines
284 B
Bash
Raw Permalink Normal View History

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