blob: 9f6d1a74da6ef5ed76ee3c913fd37c8865d358f7 [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
Miguel Ojedafae35da2022-05-28 17:31:31 +02004for FILE in Makefile Documentation/images/logo.gif; do
Nishanth Menon03b12922021-07-07 16:06:00 -05005 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