From 5346a4faefea7a4a942de0c401818563e8e47659 Mon Sep 17 00:00:00 2001 From: Dotta Date: Tue, 3 Mar 2026 13:01:00 -0600 Subject: [PATCH] fix: correct pnpm filter name in db:backup script MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- scripts/backup-db.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/backup-db.sh b/scripts/backup-db.sh index 521d71a8..d552f3a2 100755 --- a/scripts/backup-db.sh +++ b/scripts/backup-db.sh @@ -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 "$@"