server-deploy: remove stray .pnpm-store after git pull.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
Ali Taghavi
2026-05-19 10:22:20 +03:30
parent 863c9b13d5
commit 75019e03bf

View File

@@ -10,6 +10,8 @@ cd "$APP_DIR"
echo "==> Pull latest code"
git pull origin main
# Accidental commit cleanup — never version the pnpm store
rm -rf .pnpm-store 2>/dev/null || true
echo "==> Ensure Docker network"
docker network inspect nodecloud-net >/dev/null 2>&1 || docker network create nodecloud-net