swap INFO for DEBUG

This commit is contained in:
2024-02-07 15:16:51 -07:00
parent 261bbee1a4
commit a90482de8c
7 changed files with 9 additions and 11 deletions

View File

@ -18,7 +18,7 @@ SETUP_SYMLINK() {
local TARGET_CONFIG="$HOME/.config/$2"
[ ! -f "$SOURCE_CONFIG" ] && [ ! -d "$SOURCE_CONFIG" ] && [ -f "$TARGET_CONFIG" ] && {
INFO 'SOURCE_CONFIG is not tracked; copying from TARGET_CONFIG'
DEBUG 'SOURCE_CONFIG is not tracked; copying from TARGET_CONFIG'
mkdir -p "$(dirname "$SOURCE_CONFIG")"
cp "$TARGET_CONFIG" "$SOURCE_CONFIG"
}