blob: cb76324756bd302ffab3fd1a51d6d79ddff826d0 [file] [log] [blame]
Thierry Redingb72231e2018-12-28 00:31:32 -08001#!/bin/sh
2
Nishanth Menon03b12922021-07-07 16:06:00 -05003# run check on a text and a binary file
4for FILE in Makefile Documentation/logo.gif; do
5 python3 scripts/spdxcheck.py $FILE
6 python3 scripts/spdxcheck.py - < $FILE
Thierry Redingb72231e2018-12-28 00:31:32 -08007done
Nishanth Menon03b12922021-07-07 16:06:00 -05008
9# run check on complete tree to catch any other issues
10python3 scripts/spdxcheck.py > /dev/null