Removed duplicate log statement
This commit is contained in:
parent
2ca1221090
commit
8e08b982e5
5 changed files with 0 additions and 5 deletions
|
@ -432,7 +432,6 @@ if [ ! -f "${XDG_CONFIG_HOME:-$HOME/.config}/chezmoi/chezmoi.yaml" ]; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# @description Run `chezmoi apply` and enable verbose mode if the `DEBUG_MODE` environment variable is set to true
|
# @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
|
if [ "$DEBUG_MODE" = 'true' ]; then
|
||||||
DEBUG_MODIFIER="-vvvvv"
|
DEBUG_MODIFIER="-vvvvv"
|
||||||
fi
|
fi
|
||||||
|
|
|
@ -339,7 +339,6 @@ if [ ! -f "${XDG_CONFIG_HOME:-$HOME/.config}/chezmoi/chezmoi.yaml" ]; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# @description Run `chezmoi apply` and enable verbose mode if the `DEBUG_MODE` environment variable is set to true
|
# @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
|
if [ "$DEBUG_MODE" = 'true' ]; then
|
||||||
DEBUG_MODIFIER="-vvvvv"
|
DEBUG_MODIFIER="-vvvvv"
|
||||||
fi
|
fi
|
||||||
|
|
|
@ -457,7 +457,6 @@ export DEBIAN_FRONTEND=noninteractive
|
||||||
|
|
||||||
### Run chezmoi apply
|
### Run chezmoi apply
|
||||||
# shellcheck disable=SC2016
|
# shellcheck disable=SC2016
|
||||||
logg info 'Running chezmoi apply'
|
|
||||||
if [ "$DEBUG_MODE" == 'true' ]; then
|
if [ "$DEBUG_MODE" == 'true' ]; then
|
||||||
DEBUG_MODIFIER="-vvvvv"
|
DEBUG_MODIFIER="-vvvvv"
|
||||||
else
|
else
|
||||||
|
|
|
@ -385,7 +385,6 @@ if [ ! -f "${XDG_CONFIG_HOME:-$HOME/.config}/chezmoi/chezmoi.yaml" ]; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# @description Run `chezmoi apply` and enable verbose mode if the `DEBUG_MODE` environment variable is set to true
|
# @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
|
if [ "$DEBUG_MODE" = 'true' ]; then
|
||||||
DEBUG_MODIFIER="-vvvvv"
|
DEBUG_MODIFIER="-vvvvv"
|
||||||
fi
|
fi
|
||||||
|
|
|
@ -261,7 +261,6 @@ if [ ! -f "${XDG_CONFIG_HOME:-$HOME/.config}/chezmoi/chezmoi.yaml" ]; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# @description Run `chezmoi apply` and enable verbose mode if the `DEBUG_MODE` or `DEBUG` environment variable is set to true
|
# @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
|
if [ "$DEBUG_MODE" = 'true' ]; then
|
||||||
DEBUG_MODIFIER="-vvvvv"
|
DEBUG_MODIFIER="-vvvvv"
|
||||||
elif [ "$DEBUG" = 'true' ]; then
|
elif [ "$DEBUG" = 'true' ]; then
|
||||||
|
|
Loading…
Reference in a new issue