Use lop instead of hio

This commit is contained in:
Rezart Qelibari
2022-02-07 19:45:19 +01:00
parent bbbb80e531
commit 73940ad0e6

View File

@@ -158,9 +158,9 @@ function askNecessaryQuestions() {
} }
function printModulesToInstall() { function printModulesToInstall() {
hio info 'Modules that will install are:' lop section 'Modules that will install are:'
for mod in "${modulesToInstall[@]}"; do for mod in "${modulesToInstall[@]}"; do
echo "${mod}" hio info "${mod}"
done | abbreviatePaths done | abbreviatePaths
exit 0 exit 0
} }
@@ -196,7 +196,7 @@ function main() {
autoloadZShLib autoloadZShLib
loadModules loadModules
askNecessaryQuestions askNecessaryQuestions
hio debug "Current working dir is: `pwd`" lop debug "Current working dir is: `pwd`"
} }
if [[ "${ZSH_EVAL_CONTEXT}" == toplevel ]]; then if [[ "${ZSH_EVAL_CONTEXT}" == toplevel ]]; then