diff options
author | Galen Guyer <galen@galenguyer.com> | 2022-08-09 18:23:15 -0400 |
---|---|---|
committer | Galen Guyer <galen@galenguyer.com> | 2022-08-09 18:23:15 -0400 |
commit | 3a363c648641314ed3d20d4c9f363cf01072c301 (patch) | |
tree | 5535ed1cddef1be0d737dea60ad42b8b9710d1bb /modules/40-git/install.sh | |
parent | 1ce073aa9fae85ade97673ae5ac297fc7f8d6255 (diff) |
add logging module
Diffstat (limited to 'modules/40-git/install.sh')
-rw-r--r-- | modules/40-git/install.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/40-git/install.sh b/modules/40-git/install.sh index 890db77..384f539 100644 --- a/modules/40-git/install.sh +++ b/modules/40-git/install.sh @@ -12,10 +12,11 @@ function preinstall() { function install() { # backup old file if it exists and we haven't backed it up before if [[ -f "$HOME/.gitconfig" ]] && ! [[ -f "$HOME/.gitconfig.bak" ]] && ! [[ -f "$_scriptdir/.firstrun" ]]; then - echo "making backup" + log verbose "making backup" cp "$HOME/.gitconfig" "$HOME/.gitconfig.bak" touch "$_scriptdir/.firstrun" fi + log info "linking gitconfig" ln -f "$_scriptdir/gitconfig" "$HOME/.gitconfig" } |