summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorPeter Stone <thepeterstone@gmail.com>2026-03-25 23:29:15 +0000
committerPeter Stone <thepeterstone@gmail.com>2026-03-25 23:29:15 +0000
commitf88073c451988026b8cb36294f6ec4e33c38415c (patch)
tree50bb72cde9f2cffe0e2269b7382776a802ebfb27 /scripts
parent36d50b5049996064fbdcb9338e70d4f81c2e6873 (diff)
fix: update deploy script to pull from main instead of master
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/deploy2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/deploy b/scripts/deploy
index 863dfe8..cd8c200 100755
--- a/scripts/deploy
+++ b/scripts/deploy
@@ -21,7 +21,7 @@ REPO_DIR="$(cd "$(dirname "$0")/.." && pwd)"
cd "${REPO_DIR}"
echo "==> Pulling latest from bare repo..."
-git pull --ff-only local master
+git pull --ff-only local main
STASHED=false
if [ "$DIRTY" = false ] && [ -n "$(git status --porcelain)" ]; then