1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-11-13 19:18:56 +00:00

templates: make diff louder

This commit is contained in:
matejcik 2018-08-27 19:56:38 +02:00 committed by Pavol Rusnak
parent 9a2be54e94
commit 75c14433de

View File

@ -12,7 +12,7 @@ check_results() {
TMP=`mktemp`
TARGET="${filename%%.mako}"
$RENDER "$filename" -o $TMP
if ! diff -q "$TARGET" "$TMP"; then
if ! diff -u "$TARGET" "$TMP"; then
CHECK_FAIL=1
fi
done