sync: auto-sync from DESKTOP-0O8A1RL at 2026-05-15 06:18:33

Author: Mike Swanson
Machine: DESKTOP-0O8A1RL
Timestamp: 2026-05-15 06:18:33
This commit is contained in:
2026-05-15 06:18:36 -07:00
parent 39bc5f1e86
commit 415476e36c
2 changed files with 13 additions and 1 deletions

View File

@@ -61,6 +61,18 @@ if [ -f ".claude/identity.json" ]; then
fi
echo -e "${GREEN}[OK]${NC} Syncing as: $USER_DISPLAY (machine: $MACHINE)"
# Phase 1a: Update submodules to latest remote
echo ""
echo "=== Phase 1a: Submodule update ==="
if [ -f ".gitmodules" ]; then
git submodule update --remote --quiet 2>/dev/null && \
echo -e "${GREEN}[OK]${NC} Submodules updated to latest remote." || \
echo -e "${YELLOW}[WARNING]${NC} Submodule update failed (network or remote issue — continuing)."
else
echo -e "${GREEN}[OK]${NC} No submodules."
fi
# Phase 1: Local changes
echo ""
echo "=== Phase 1: Local changes ==="