fix: correct pnpm filter name in db:backup script

The filter used `@paperclip/db` which doesn't exist — the package is
`@paperclipai/db`. This caused "No projects matched the filters".

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Dotta
2026-03-03 13:01:00 -06:00
parent 9513bef7e7
commit 5346a4faef

View File

@@ -13,4 +13,4 @@ SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
PROJECT_ROOT="$(cd "$SCRIPT_DIR/.." && pwd)"
cd "$PROJECT_ROOT"
exec pnpm --filter @paperclip/db exec tsx src/backup.ts "$@"
exec pnpm --filter @paperclipai/db exec tsx src/backup.ts "$@"