From 8f3bde5cfca30ffd641ef49f4c8d274db1ef72df Mon Sep 17 00:00:00 2001 From: Nick Shirokov Date: Wed, 25 Feb 2026 18:00:38 +0300 Subject: [PATCH] fix(db-create): restore quotes in CREATEINFOBASE connection string File="path" quotes are part of 1C connection string syntax, not shell quoting. Previous fix correctly removed quotes from /Out and /F args (where list2cmdline handles quoting) but incorrectly removed them from the CREATEINFOBASE connection string too. Co-Authored-By: Claude Opus 4.6 --- .claude/skills/db-create/scripts/db-create.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.claude/skills/db-create/scripts/db-create.py b/.claude/skills/db-create/scripts/db-create.py index a0d41096..21dc6e48 100644 --- a/.claude/skills/db-create/scripts/db-create.py +++ b/.claude/skills/db-create/scripts/db-create.py @@ -68,7 +68,7 @@ def main(): if args.InfoBaseServer and args.InfoBaseRef: arguments.append(f'Srvr="{args.InfoBaseServer}";Ref="{args.InfoBaseRef}"') else: - arguments.append(f'File={args.InfoBasePath}') + arguments.append(f'File="{args.InfoBasePath}"') # --- Template --- if args.UseTemplate: