From 1f5e5210ea63d9e5a2a7fb4690766f768dea3d0a Mon Sep 17 00:00:00 2001 From: Parker TenBroeck <51721964+ParkerTenBroeck@users.noreply.github.com> Date: Wed, 7 Jan 2026 14:22:39 -0500 Subject: [PATCH] fixed another issue with script --- web/deploy.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/web/deploy.sh b/web/deploy.sh index 5b10d05..426811d 100755 --- a/web/deploy.sh +++ b/web/deploy.sh @@ -88,12 +88,13 @@ mkdir -p docs # Copy contents of dist into docs cp -R dist/. ../docs/ +git add docs + # Commit if changed if git diff --quiet; then echo "✅ No changes to commit in docs/. Skipping commit." else echo "📝 Committing docs update..." - git add docs git commit -m "Deploy: update docs from dist" fi