vendor: utils: add colors to merge script output
Change-Id: I3920c92a0d5615eaf8059bb70441310e0e591fb8
diff --git a/utils/aosp-merge.sh b/utils/aosp-merge.sh
index 418c393..da5ec2b 100755
--- a/utils/aosp-merge.sh
+++ b/utils/aosp-merge.sh
@@ -45,9 +45,9 @@
ret=$(git pull https://android.googlesource.com/platform/$aosp_project ${ref} 2>&1);
if echo $ret | grep "CONFLICT (content)" > /dev/null ; then
- echo " -> WARNING!: MERGE CONFLICT";
+ echo " -> \e[33mWARNING!: \e[31mMERGE CONFLICT";
else
- echo " -> DONE!";
+ echo " -> \e[32mDONE!";
fi
cd - > /dev/null;