diff options
author | Justin chi <chigang@huawei.com> | 2015-09-12 08:15:08 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@172.30.200.206> | 2015-09-12 08:15:08 +0000 |
commit | c8bfaecc87a732f8b31fbb8629893d8df4af7468 (patch) | |
tree | 83eacc46a182f863602f742279963383f6604746 /ci/log.sh | |
parent | 0e31ef15f4765216d7d7c2354c09576681cda7ff (diff) | |
parent | 9322711b6347bab9c2a7b47792373ddabae3a8a6 (diff) |
Merge "delete unused dir and config item"
Diffstat (limited to 'ci/log.sh')
-rwxr-xr-x | ci/log.sh | 22 |
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}" -} - |