fixed another issue in script

This commit is contained in:
Parker TenBroeck 2026-01-07 14:28:49 -05:00
parent 1f5e5210ea
commit 942849a15c

View file

@ -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'..."