[zsh] Convert all shell-log calls to ShellLog

This commit is contained in:
Eryn Wells 2022-01-22 09:11:53 -08:00
parent 0894a4957e
commit a13ecc9e4d
17 changed files with 28 additions and 28 deletions

View file

@ -7,7 +7,7 @@ function init_configure_ls
local ls_options
if [[ ! -e "$1" ]]; then
shell-log -l error 'Missing required path to ls binary'
ShellLog -l error 'Missing required path to ls binary'
return
fi
@ -19,7 +19,7 @@ function init_configure_ls
ls_options='-G'
fi
shell-log -l debug "Setting up aliases for $1"
ShellLog -l debug "Setting up aliases for $1"
alias ls="$1 $ls_options"
alias la="$1 -A $ls_options"
alias ll="$1 -l $ls_options"
@ -33,7 +33,7 @@ function init_configure_ls
dircolors="$HOME/.dircolors/default.cfg"
fi
shell-log -l debug "Setting up dircolors: `basename $dircolors`"
ShellLog -l debug "Setting up dircolors: `basename $dircolors`"
eval `$dircolors_bin $dircolors`
fi
}