From 814d8d7b012ce0794dac674e7485157273ade2a3 Mon Sep 17 00:00:00 2001
From: Grigoris Pavlakis <grigpavl@ece.auth.gr>
Date: Wed, 20 Mar 2019 12:32:04 +0200
Subject: [PATCH] Change the blue used to be more bright for visibility

---
 ci/cppcheck-misra.sh | 6 +++---
 ci/cppcheck.sh       | 6 +++---
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/ci/cppcheck-misra.sh b/ci/cppcheck-misra.sh
index a1d14f95..deca8a6f 100755
--- a/ci/cppcheck-misra.sh
+++ b/ci/cppcheck-misra.sh
@@ -7,9 +7,9 @@
 # $ ci/cppcheck-misra.sh
 #
 
-echo -e "\033[0;34mStarting cppcheck...\033[0m"
+echo -e "\u001b[34;1mStarting cppcheck...\u001b[0m"
 
-echo -e "\033[0;34mRunning cppcheck with MISRA C(2012) rule compliance tests...\033[0m"
+echo -e "\u001b[34;1mRunning cppcheck with MISRA C(2012) rule compliance tests...\u001b[0m"
 
 # grab the MISRA addon and the cppcheck addon interface from github
 curl https://raw.githubusercontent.com/danmar/cppcheck/f4b5b156d720c712f6ce99f6e01d8c1b3f800d52/addons/misra.py > misra.py
@@ -25,4 +25,4 @@ done
 for file in $(find inc/ src/ -type f -name "*.dump")
 do 
     python misra.py $file
-done
\ No newline at end of file
+done
diff --git a/ci/cppcheck.sh b/ci/cppcheck.sh
index 83812104..527e10d7 100755
--- a/ci/cppcheck.sh
+++ b/ci/cppcheck.sh
@@ -7,10 +7,10 @@
 # $ ci/cppcheck.sh
 #
 
-echo -e "\033[0;34mStarting cppcheck...\033[0m"
+echo -e "\u001b[34;1mStarting cppcheck...\u001b[0m"
 
-echo -e "\033[0;34mRunning cppcheck with default checklist...\033[0m"
+echo -e "\u001b[34;1mRunning cppcheck with default checklist...\u001b[0m"
 
 cd "$(dirname "$0")/.."
 cppcheck --enable=all --inline-suppr --suppress=unusedFunction --suppress=missingIncludeSystem \
-    --suppress=noExplicitConstructor --error-exitcode=1 -I inc src test
\ No newline at end of file
+    --suppress=noExplicitConstructor --error-exitcode=1 -I inc src test
-- 
GitLab