summaryrefslogtreecommitdiff
path: root/tools/check_code_size.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tools/check_code_size.sh')
-rwxr-xr-xtools/check_code_size.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/check_code_size.sh b/tools/check_code_size.sh
index c5f0c6ffd..2925ff168 100755
--- a/tools/check_code_size.sh
+++ b/tools/check_code_size.sh
@@ -10,7 +10,7 @@ REFERENCE=$HOME/persist/firmware.bin
if [ -f $REFERENCE ]; then
size_old=$(stat -c%s $REFERENCE)
- size_new=$(stat -c%s minimal/build/firmware.bin)
+ size_new=$(stat -c%s ports/minimal/build/firmware.bin)
echo "Old size: $size_old new size: $size_new"
if [ $size_new -gt $size_old ]; then
echo "Validation failure: Core code size increased"