android_kernel_samsung_a23xq/scripts/spdxcheck-test.sh
rsuntk ae5385525c Initial A23 5G source
Signed-off-by: rsuntk <rissu.ntk@gmail.com>
2025-01-11 02:04:00 +07:00

12 lines
323 B
Bash
Executable file

#!/bin/sh
for PYTHON in python2 python3; do
# run check on a text and a binary file
for FILE in Makefile Documentation/logo.gif; do
$PYTHON scripts/spdxcheck.py $FILE
$PYTHON scripts/spdxcheck.py - < $FILE
done
# run check on complete tree to catch any other issues
$PYTHON scripts/spdxcheck.py > /dev/null
done