From d034fdaad0641b0dbb1786bf9484b6bf6a8e0a54 Mon Sep 17 00:00:00 2001 From: Eric Furst Date: Fri, 27 Feb 2026 05:58:52 -0500 Subject: [PATCH] Fix deploy script to only stage listed public files Prevents untracked files (output_test.txt, etc.) from being included. --- deploy_public.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/deploy_public.sh b/deploy_public.sh index 9f1cc61..9240f1b 100755 --- a/deploy_public.sh +++ b/deploy_public.sh @@ -79,8 +79,8 @@ skip { next } { print } ' README.md > README.tmp && mv README.tmp README.md -# Stage and commit -git add . +# Stage only the public files (not untracked files on disk) +git add "${PUBLIC_FILES[@]}" README.md git commit -m "$COMMIT_MSG Co-Authored-By: Claude Opus 4.6 "