From c12f7b325fec6319cf4b8f9d9ab502703e3a7c67 Mon Sep 17 00:00:00 2001 From: Parker TenBroeck <51721964+ParkerTenBroeck@users.noreply.github.com> Date: Wed, 7 Jan 2026 14:30:51 -0500 Subject: [PATCH] fixed yet again another issue in the script --- web/deploy.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/deploy.sh b/web/deploy.sh index 9d3f1b9..d62e375 100755 --- a/web/deploy.sh +++ b/web/deploy.sh @@ -91,7 +91,7 @@ cp -R dist/. ../docs/ git add ../docs # Commit if changed -if git diff --quiet; then +if git diff --cached --quiet; then echo "✅ No changes to commit in docs/. Skipping commit." else echo "📝 Committing docs update..."