;dev:tools: checkembeddedfiles

This commit is contained in:
Simon Michael 2023-06-02 07:49:18 -10:00
parent 60d3e1ef97
commit 40bb5a2c5c

17
tools/checkembeddedfiles Executable file
View File

@ -0,0 +1,17 @@
#!/usr/bin/env bash
# Check that all files embedded with file-embed are declared in extra-source-files
set -e
echo "Checking embedded file declarations:"
mapfile -t embeddedfiles < <(rg --sort=path '^ +\$\(embedFileRelative "([^"]+)"' -or '$1' -I)
status=0
for f in "${embeddedfiles[@]}"; do
if output=$(rg --sort=path -l "$f" -- */package.yaml); then
printf '%-40s\tdeclared in %s\n' "$f" "$output"
else
printf '%-40s\tUNDECLARED\n' "$f"
status=1
fi;
done
if [[ $status != 0 ]]; then echo FAIL; else echo ok; fi
exit $status