From 73940ad0e6eb5c3f0f9840c6bec3cc08d6537e71 Mon Sep 17 00:00:00 2001 From: Rezart Qelibari Date: Mon, 7 Feb 2022 19:45:19 +0100 Subject: [PATCH] Use lop instead of hio --- install.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/install.sh b/install.sh index 571ba1f..246dfc0 100755 --- a/install.sh +++ b/install.sh @@ -158,9 +158,9 @@ function askNecessaryQuestions() { } function printModulesToInstall() { - hio info 'Modules that will install are:' + lop section 'Modules that will install are:' for mod in "${modulesToInstall[@]}"; do - echo "${mod}" + hio info "${mod}" done | abbreviatePaths exit 0 } @@ -196,7 +196,7 @@ function main() { autoloadZShLib loadModules askNecessaryQuestions - hio debug "Current working dir is: `pwd`" + lop debug "Current working dir is: `pwd`" } if [[ "${ZSH_EVAL_CONTEXT}" == toplevel ]]; then