From 27ba0ca864df6f1550d36df0c3ff847e6a69cd5b Mon Sep 17 00:00:00 2001 From: Allison Kemmerle Date: Mon, 6 Jan 2025 17:02:47 -0500 Subject: [PATCH] Fix bug in hubdb create --- commands/hubdb/create.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/hubdb/create.ts b/commands/hubdb/create.ts index bb77c8897..a496f388b 100644 --- a/commands/hubdb/create.ts +++ b/commands/hubdb/create.ts @@ -51,7 +51,7 @@ exports.handler = async options => { let filePath; try { - const { path: filePath } = + const filePath = 'path' in options ? path.resolve(getCwd(), options.path) : await selectPathPrompt(options);