From 098f262b5e08eb2dc5b2b7e90f1710db4e808877 Mon Sep 17 00:00:00 2001 From: lukashow Date: Sat, 7 Feb 2026 16:22:45 +0800 Subject: [PATCH] fix(cli): Fix database keyword-args issue --- tools/src/constants/db.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/src/constants/db.ts b/tools/src/constants/db.ts index 6eaf190d1..93ee70a56 100644 --- a/tools/src/constants/db.ts +++ b/tools/src/constants/db.ts @@ -36,7 +36,7 @@ export const PB_KWARGS = [ `--dir=${PB_DATA_DIR}`, `--migrationsDir=${PB_MIGRATIONS_DIR}`, '--automigrate=0', - `--http ${PB_URL || 'localhost:8090'}` + `--http=${PB_URL || 'localhost:8090'}` ] // Straightaway exit if PB_DIR is not accessible (skip in Docker mode)