Skip to content

Commit

Permalink
fix(chezmoi/dot_profile): change comparison operation for DOTFILES_VE…
Browse files Browse the repository at this point in the history
…RBOSE
  • Loading branch information
entelecheia committed Aug 6, 2023
1 parent 793a27c commit 0b5151d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions chezmoi/dot_profile
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ export DOTFILES_VERBOSE="{{ .system.verbose }}"
# load all shell config files
if [ -d "${HOME}/.config/shrc" ]; then
for file in "${HOME}/.config/shrc"/*; do
if [ "${DOTFILES_VERBOSE}" -gt 1 ]; then
echo "* Loading shell config file: ${file}"
if [ "${DOTFILES_VERBOSE}" = "true" ]; then
echo "* Loading shell config file: ${file}"
fi
# shellcheck source=/dev/null
. "$file"
Expand Down

0 comments on commit 0b5151d

Please sign in to comment.