Make ui_print messages consistent

Change-Id: I95f870030820557df074fa6c5d82584b9ecfe441
Signed-off-by: Paul Keith <javelinanddart@bestas.gr>
This commit is contained in:
Paul Keith 2017-05-02 14:47:44 -05:00
parent 7acb09f694
commit f362a67fcc

View File

@ -37,7 +37,7 @@ else
# Try to get the block from /etc/recovery.fstab
block=`cat /etc/recovery.fstab | cut -d '#' -f 1 | grep /system | grep -o '/dev/[^ ]*' | head -1`
if [ -n "$block" ] && mount $block /system; then
ui_print "Could not mount /system! Aborting..."
ui_print "Could not mount /system! Aborting"
exit 1
else
ui_print "/system mounted"
@ -48,7 +48,7 @@ if [ -f /system/bin/toybox ]; then
UTILS=/system/bin/toybox
LD_PATH=/system/lib
else
ui_print "Could not find /system/bin/toybox! Aborting..."
ui_print "Could not find /system/bin/toybox! Aborting"
exit 1
fi