From f362a67fcc37ae84fae49c0826bfc696953dd52d Mon Sep 17 00:00:00 2001 From: Paul Keith Date: Tue, 2 May 2017 14:47:44 -0500 Subject: [PATCH] Make ui_print messages consistent Change-Id: I95f870030820557df074fa6c5d82584b9ecfe441 Signed-off-by: Paul Keith --- build/meta/com/google/android/update-binary | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build/meta/com/google/android/update-binary b/build/meta/com/google/android/update-binary index f71886f..1a72b3a 100644 --- a/build/meta/com/google/android/update-binary +++ b/build/meta/com/google/android/update-binary @@ -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