mkimg: improve error message

This commit is contained in:
Konsta
2025-03-29 15:00:48 +02:00
parent ad8d8e119f
commit f73605e466

View File

@@ -21,7 +21,7 @@ fi
for PARTITION in "boot" "system" "vendor"; do
if [ ! -f ${ANDROID_PRODUCT_OUT}/${PARTITION}.img ]; then
exit_with_error "Partition image not found. Run make first."
exit_with_error "Partition image not found. Run 'make ${PARTITION}image' first."
fi
done