From 8d50f6511bde660f8cc7b95f522f0b9c249000bc Mon Sep 17 00:00:00 2001 From: MichaelOv <59646765+MichaelOv@users.noreply.github.com> Date: Thu, 18 Jan 2024 15:59:49 +0100 Subject: [PATCH 1/2] Update idoit-install variant hint A customer installed PRO instead of EVAL because there was no hint --- idoit-install | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/idoit-install b/idoit-install index 3074677..181ed77 100644 --- a/idoit-install +++ b/idoit-install @@ -1737,6 +1737,12 @@ function prepareIDoit { log "Cleanup VHost directory" rm -rf "${INSTALL_DIR:?}/"* || abort "Unable to remove files" rm -f "${INSTALL_DIR}"/.htaccess || abort "Unable to remove files" + + log "" + echo -e "For evaluation use \033[32mEVAL\033[0m" + echo -e "If you have a license use \033[32mPRO\033[0m" + echo -e "If you want the open version use \033[32mOPEN\033[0m" + log "" echo -n -e "Which variant of i-doit do you like to install? [EVAL|pro|open]: " From 9eb7fc210f65b1fa919f2f4ac6af9adb3eca5a8e Mon Sep 17 00:00:00 2001 From: MichaelOv <59646765+MichaelOv@users.noreply.github.com> Date: Thu, 18 Jan 2024 16:01:50 +0100 Subject: [PATCH 2/2] from echo to log from echo to log --- idoit-install | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/idoit-install b/idoit-install index 181ed77..d1252d3 100644 --- a/idoit-install +++ b/idoit-install @@ -1739,9 +1739,9 @@ function prepareIDoit { rm -f "${INSTALL_DIR}"/.htaccess || abort "Unable to remove files" log "" - echo -e "For evaluation use \033[32mEVAL\033[0m" - echo -e "If you have a license use \033[32mPRO\033[0m" - echo -e "If you want the open version use \033[32mOPEN\033[0m" + log "For evaluation use \033[32mEVAL\033[0m" + log "If you have a license use \033[32mPRO\033[0m" + log "If you want the open version use \033[32mOPEN\033[0m" log "" echo -n -e "Which variant of i-doit do you like to install? [EVAL|pro|open]: "