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 | 53fd108aa3494102971851143b4b72e262a28659 (patch) | |
tree | 9b3e59c2a74626a728bf6f29a1c345b17cdeb25e | |
parent | 3ba8c84f2d541d819da1d7415fd3eeb853076bb0 (diff) | |
download | Ishtar-53fd108aa3494102971851143b4b72e262a28659.tar.bz2 Ishtar-53fd108aa3494102971851143b4b72e262a28659.zip |
Install script: fix color
-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() { |