summaryrefslogtreecommitdiffstats
path: root/compass/ci/log.sh
diff options
context:
space:
mode:
Diffstat (limited to 'compass/ci/log.sh')
-rwxr-xr-xcompass/ci/log.sh22
1 files changed, 0 insertions, 22 deletions
diff --git a/compass/ci/log.sh b/compass/ci/log.sh
deleted file mode 100755
index f54fdca..0000000
--- a/compass/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}"
-}
-