aboutsummaryrefslogtreecommitdiffstats
path: root/ci/log.sh
diff options
context:
space:
mode:
authorbaigk <baiguoku@huawei.com>2015-09-12 11:28:51 +0800
committerbaigk <baiguoku@huawei.com>2015-09-12 11:28:51 +0800
commit9322711b6347bab9c2a7b47792373ddabae3a8a6 (patch)
treec62631ef1e08aa6195f4ab1f46fce0d53b1b6fbc /ci/log.sh
parent6ec9d66787b01e710de5514f377830a94e32a4d2 (diff)
delete unused dir and config item
JIRA: COMPASS-45 Change-Id: Ica089d58ba339c2093ce2d47524ccf2e5e301cf4 Signed-off-by: baigk <baiguoku@huawei.com>
Diffstat (limited to 'ci/log.sh')
-rwxr-xr-xci/log.sh22
1 files changed, 0 insertions, 22 deletions
diff --git a/ci/log.sh b/ci/log.sh
deleted file mode 100755
index f54fdca5..00000000
--- a/ci/log.sh
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/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}"
-}
-