diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2017-05-02 12:36:58 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2017-05-02 12:36:58 +0200 |
commit | 6fdcc9ae7f5cfa7060acf1864865481e7dd268f8 (patch) | |
tree | 9b3e59c2a74626a728bf6f29a1c345b17cdeb25e /install | |
parent | cd12c3aead10a9fc09ed381c18e5791c3550e370 (diff) | |
download | Ishtar-6fdcc9ae7f5cfa7060acf1864865481e7dd268f8.tar.bz2 Ishtar-6fdcc9ae7f5cfa7060acf1864865481e7dd268f8.zip |
Install script: fix color
Diffstat (limited to 'install')
-rwxr-xr-x | install/ishtar-delete-instance | 2 | ||||
-rwxr-xr-x | install/ishtar-install | 2 | ||||
-rwxr-xr-x | install/ishtar-prepare-instance | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/install/ishtar-delete-instance b/install/ishtar-delete-instance index de54154d2..b45e8a1fe 100755 --- a/install/ishtar-delete-instance +++ b/install/ishtar-delete-instance @@ -16,7 +16,7 @@ cecho() { *) local text="$1" esac [ -z "$text" ] && local text="$color$2${code}0m" - echo "$text" + echo -e "$text" } do_delete_instance() { diff --git a/install/ishtar-install b/install/ishtar-install index 2b01c4e8e..d1e6d93d3 100755 --- a/install/ishtar-install +++ b/install/ishtar-install @@ -16,7 +16,7 @@ cecho() { *) local text="$1" esac [ -z "$text" ] && local text="$color$2${code}0m" - echo "$text" + echo -e "$text" } command_exists() { diff --git a/install/ishtar-prepare-instance b/install/ishtar-prepare-instance index 33db4de4a..9539d03ec 100755 --- a/install/ishtar-prepare-instance +++ b/install/ishtar-prepare-instance @@ -16,7 +16,7 @@ cecho() { *) local text="$1" esac [ -z "$text" ] && local text="$color$2${code}0m" - echo "$text" + echo -e "$text" } do_install_instance() { |