From: Frank Brehm Date: Fri, 4 Oct 2019 08:22:46 +0000 (+0200) Subject: Bugfixing bin/update-env.sh X-Git-Tag: 1.3.4~29 X-Git-Url: https://git.uhu-banane.de/?a=commitdiff_plain;h=b7d2bcb642daf81c965dce0367d2beeeb64b1815;p=pixelpark%2Fcreate-terraform.git Bugfixing bin/update-env.sh --- diff --git a/bin/update-env.sh b/bin/update-env.sh index 87c623c..63635fa 100755 --- a/bin/update-env.sh +++ b/bin/update-env.sh @@ -7,7 +7,7 @@ VERBOSE="n" DEBUG="n" QUIET='n' -VERSION="2.0" +VERSION="2.1" # console colors: RED="" @@ -252,14 +252,14 @@ get_options() { if type -t virtualenv >/dev/null ; then : else - error "Command '${RED}virtualenv${NORMAL}' not found, please install package '${YELOW}python-virtualenv${NORMAL}' or appropriate." + error "Command '${RED}virtualenv${NORMAL}' not found, please install package '${YELLOW}python-virtualenv${NORMAL}' or appropriate." exit 6 fi if type -t msgfmt >/dev/null ; then : else - echo "Command '${RED}msgfmt${NORMAL}' not found, please install package '${YELOW}gettext${NORMAL}' or appropriate." >&2 + echo "Command '${RED}msgfmt${NORMAL}' not found, please install package '${YELLOW}gettext${NORMAL}' or appropriate." >&2 exit 6 fi @@ -302,7 +302,7 @@ init_venv() { if [[ "${found}" == "n" ]] ; then empty_line >&2 error "Did not found a usable Python version." >&2 - error "Usable Python versions are: ${YELOW}${valid_py_versions[*]}${NORMAL}." >&2 + error "Usable Python versions are: ${YELLOW}${valid_py_versions[*]}${NORMAL}." >&2 empty_line >&2 exit 5 fi