github.com/greenboxal/deis@v1.12.1/contrib/utils.sh (about)

     1  #!/usr/bin/env bash
     2  
     3  function echo_yellow {
     4    echo -e "\033[0;33m$1\033[0m"
     5  }
     6  
     7  function echo_red {
     8    echo -e "\033[0;31m$1\033[0m"
     9  }
    10  
    11  function echo_green {
    12    echo -e "\033[0;32m$1\033[0m"
    13  }
    14  
    15  COREOS_CHANNEL=${COREOS_CHANNEL:-stable}
    16  COREOS_VERSION=${COREOS_VERSION:-766.5.0}