vendor: fix colors in merge script
somehow wrong ps was pushed
Change-Id: Ie63e9e7fa946e93772c298503c9fe241fd108bb0
diff --git a/utils/aosp-merge.sh b/utils/aosp-merge.sh
index da5ec2b..69da619 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 " -> \e[33mWARNING!: \e[31mMERGE CONFLICT";
+ echo -e " -> \e[33mWARNING!: \e[31mMERGE CONFLICT\e[0m";
else
- echo " -> \e[32mDONE!";
+ echo -e " -> \e[32mDONE!\e[0m";
fi
cd - > /dev/null;