]> Frank Brehm's Git Trees - pixelpark/create-terraform.git/commitdiff
Bugfixing bin/update-env.sh
authorFrank Brehm <frank@brehm-online.com>
Fri, 4 Oct 2019 08:22:46 +0000 (10:22 +0200)
committerFrank Brehm <frank@brehm-online.com>
Fri, 4 Oct 2019 08:22:46 +0000 (10:22 +0200)
bin/update-env.sh

index 87c623c120ffddb971a95e9c959a5a259ce052a5..63635fa5988ddabe6356de8e13264528ab7a55fb 100755 (executable)
@@ -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