From 3daff0dc165cc396e7f777a72957ad35f709ec71 Mon Sep 17 00:00:00 2001 From: Max Amundsen Date: Thu, 14 Aug 2025 12:43:16 -0400 Subject: [PATCH] update sync --- sync.sh | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/sync.sh b/sync.sh index b122951..f94b85e 100755 --- a/sync.sh +++ b/sync.sh @@ -8,9 +8,7 @@ HOME_DIR="$HOME" get_tracked_files() { find "$DOTFILES_DIR" -type f \ -not -path "*/.git/*" \ - -not -name "sync.sh" \ - -not -name "*.md" \ - -not -name "*.zip" | sort + -not -name "sync.sh" | sort } usage() { @@ -39,7 +37,7 @@ copy_file() { if [[ -f "$src" ]]; then ensure_dir "$(dirname "$dest")" - echo "$action: $src -> $dest" + # echo "$action: $src -> $dest" cp "$src" "$dest" else echo "Warning: Source file does not exist: $src"