1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-10-18 13:59:17 +00:00
trezor-firmware/core/tools/build_templates

28 lines
585 B
Plaintext
Raw Normal View History

#!/bin/sh
set -e
CWD=`dirname "$0"`
RENDER="$CWD/../vendor/trezor-common/tools/cointool.py render"
# Search both in `core/src` and `core/embed`
FIND_TEMPLATES="find $CWD/.. -name *.mako -not -name _proto*"
check_results() {
CHECK_FAIL=0
for filename in $($FIND_TEMPLATES); do
TMP=`mktemp`
TARGET="${filename%%.mako}"
$RENDER "$filename" -o $TMP
2018-08-27 17:56:38 +00:00
if ! diff -u "$TARGET" "$TMP"; then
CHECK_FAIL=1
fi
done
exit $CHECK_FAIL
}
if [ "$1" = "--check" ]; then
check_results
else
$FIND_TEMPLATES | xargs $RENDER
fi