3
0
mirror of https://github.com/Qortal/Brooklyn.git synced 2025-01-30 14:52:17 +00:00
Brooklyn/scripts/spdxcheck-test.sh

11 lines
284 B
Bash
Raw Permalink Normal View History

2022-04-02 13:24:21 +00:00
#!/bin/sh
# run check on a text and a binary file
2022-09-09 09:20:25 +00:00
for FILE in Makefile Documentation/images/logo.gif; do
2022-04-02 13:24:21 +00:00
python3 scripts/spdxcheck.py $FILE
python3 scripts/spdxcheck.py - < $FILE
done
# run check on complete tree to catch any other issues
python3 scripts/spdxcheck.py > /dev/null