mirror of
https://github.com/nortakales/flipper-zero-tonies.git
synced 2025-12-06 06:45:05 +01:00
Update validation to catch non-nfc files
This commit is contained in:
parent
bbe3595839
commit
4be0aef957
1 changed files with 7 additions and 2 deletions
|
|
@ -74,7 +74,12 @@ while read -r filename; do
|
|||
ERROR_FOUND=1
|
||||
fi
|
||||
|
||||
|
||||
done < <(find . -type f -name "*.nfc")
|
||||
done < <(find . -type f \
|
||||
-not -path './scripts/*' \
|
||||
-not -path './.github/*' \
|
||||
-not -path './.git/*' \
|
||||
-not -path './.gitignore' \
|
||||
-not -path './README.md' \
|
||||
-not -path './*/README.md')
|
||||
|
||||
exit $ERROR_FOUND
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue