2022-12-18 22:14:25 -06:00
|
|
|
#!/bin/bash
|
|
|
|
|
2023-03-22 17:44:57 -05:00
|
|
|
result="$(find roles/*/{files,templates} -type f -exec file {} \; | grep -Ev ASCII\ text\|empty\|Unicode\ text | grep -v motd.txt.j2)"
|
2022-12-18 22:14:25 -06:00
|
|
|
if [ -n "$result" ]; then
|
|
|
|
echo "These files need to be evaluated -- generally, don't commit data files to Git."
|
|
|
|
echo "$result"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
exit 0
|