mirror of
https://github.com/nasa/fpp.git
synced 2025-12-15 04:05:00 -06:00
11 lines
186 B
Bash
Executable File
11 lines
186 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
fpp_syntax=../../../../bin/fpp-syntax
|
|
|
|
files=`find . -name '*.ref.txt' | egrep -v 'error|missing'`
|
|
for file in $files
|
|
do
|
|
echo "checking $file"
|
|
$fpp_syntax < $file
|
|
done
|