Removed duplicate log statement

This commit is contained in:
Brian Zalewski 2023-11-05 04:49:13 +00:00
parent 2ca1221090
commit 8e08b982e5
5 changed files with 0 additions and 5 deletions

View file

@ -432,7 +432,6 @@ if [ ! -f "${XDG_CONFIG_HOME:-$HOME/.config}/chezmoi/chezmoi.yaml" ]; then
fi
# @description Run `chezmoi apply` and enable verbose mode if the `DEBUG_MODE` environment variable is set to true
logg info 'Running chezmoi apply'
if [ "$DEBUG_MODE" = 'true' ]; then
DEBUG_MODIFIER="-vvvvv"
fi

View file

@ -339,7 +339,6 @@ if [ ! -f "${XDG_CONFIG_HOME:-$HOME/.config}/chezmoi/chezmoi.yaml" ]; then
fi
# @description Run `chezmoi apply` and enable verbose mode if the `DEBUG_MODE` environment variable is set to true
logg info 'Running chezmoi apply'
if [ "$DEBUG_MODE" = 'true' ]; then
DEBUG_MODIFIER="-vvvvv"
fi

View file

@ -457,7 +457,6 @@ export DEBIAN_FRONTEND=noninteractive
### Run chezmoi apply
# shellcheck disable=SC2016
logg info 'Running chezmoi apply'
if [ "$DEBUG_MODE" == 'true' ]; then
DEBUG_MODIFIER="-vvvvv"
else

View file

@ -385,7 +385,6 @@ if [ ! -f "${XDG_CONFIG_HOME:-$HOME/.config}/chezmoi/chezmoi.yaml" ]; then
fi
# @description Run `chezmoi apply` and enable verbose mode if the `DEBUG_MODE` environment variable is set to true
logg info 'Running chezmoi apply'
if [ "$DEBUG_MODE" = 'true' ]; then
DEBUG_MODIFIER="-vvvvv"
fi

View file

@ -261,7 +261,6 @@ if [ ! -f "${XDG_CONFIG_HOME:-$HOME/.config}/chezmoi/chezmoi.yaml" ]; then
fi
# @description Run `chezmoi apply` and enable verbose mode if the `DEBUG_MODE` or `DEBUG` environment variable is set to true
logg info 'Running chezmoi apply'
if [ "$DEBUG_MODE" = 'true' ]; then
DEBUG_MODIFIER="-vvvvv"
elif [ "$DEBUG" = 'true' ]; then