From 658c7390589d2f096e800ebb232c593543464de0 Mon Sep 17 00:00:00 2001 From: Joey Eamigh <55670930+JoeyEamigh@users.noreply.github.com> Date: Mon, 6 Apr 2026 15:52:55 -0400 Subject: [PATCH] fixing lfs ignores --- scripts/data-push.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/scripts/data-push.sh b/scripts/data-push.sh index 3d9424e..65b13d1 100755 --- a/scripts/data-push.sh +++ b/scripts/data-push.sh @@ -63,7 +63,10 @@ collect_files() { if [[ "$MODE" != "checkpoints-only" ]]; then for dir in "${DATA_DIRS[@]}"; do local abs="$REPO_ROOT/$dir" - [[ -d "$abs" ]] && find "$abs" -type f -not -name '*.zst' + [[ -d "$abs" ]] && find "$abs" -type f \ + -not -name '*.zst' \ + -not -path '*/.finetune_data_cache/*' \ + -not -path '*/.data_cache/*' done fi