aboutsummaryrefslogtreecommitdiffstats
path: root/ci/log.sh
diff options
context:
space:
mode:
authorcarey.xu <carey.xuhan@huawei.com>2015-08-10 23:02:31 -0400
committercarey.xu <carey.xuhan@huawei.com>2015-08-13 04:24:03 -0400
commit10e776642a16b2584be88e5be8740f05535d7d06 (patch)
treebf386defd6cde54c6003a3855fb852fe1806bdd7 /ci/log.sh
parent5aedf594112c0749b6e9039d15b9fe70d210a942 (diff)
Add deploy scripts for compass
JIRA: COMPASS-11 Change-Id: Id588912c73b424228b6f01cd47fd282d040f7b8f Signed-off-by: carey.xu <carey.xuhan@huawei.com>
Diffstat (limited to 'ci/log.sh')
-rwxr-xr-xci/log.sh22
1 files changed, 22 insertions, 0 deletions
diff --git a/ci/log.sh b/ci/log.sh
new file mode 100755
index 00000000..f54fdca5
--- /dev/null
+++ b/ci/log.sh
@@ -0,0 +1,22 @@
+#!/bin/bash
+reset=`tput sgr0`
+red=`tput setaf 1`
+green=`tput setaf 2`
+yellow=`tput setaf 3`
+
+function log_info() {
+ echo -e "${green}$*${reset}"
+}
+
+function log_warn() {
+ echo -e "${yellow}$*${reset}"
+}
+
+function log_error() {
+ echo -e "${red}$*${reset}"
+}
+
+function log_progress() {
+ echo -en "${yellow}$*\r${reset}"
+}
+