From 942849a15ca9542365ac1969a3bf5c0010922c25 Mon Sep 17 00:00:00 2001 From: Parker TenBroeck <51721964+ParkerTenBroeck@users.noreply.github.com> Date: Wed, 7 Jan 2026 14:28:49 -0500 Subject: [PATCH] fixed another issue in script --- web/deploy.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web/deploy.sh b/web/deploy.sh index 426811d..9d3f1b9 100755 --- a/web/deploy.sh +++ b/web/deploy.sh @@ -88,14 +88,14 @@ mkdir -p docs # Copy contents of dist into docs cp -R dist/. ../docs/ -git add 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 commit -m "Deploy: update docs from dist" + git commit -m "Deploy" fi echo "🚀 Pushing '$PAGES_BRANCH' to '$REMOTE'..."