From e30ad4ad640ed2f937d89bb0d8fccb5e8c904257 Mon Sep 17 00:00:00 2001 From: Dan Lynch Date: Sun, 15 Feb 2026 06:51:50 +0000 Subject: [PATCH] fix: remove double quotes from pgpm env output --- pgpm/cli/src/commands/env.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pgpm/cli/src/commands/env.ts b/pgpm/cli/src/commands/env.ts index 1a4b3078a..52048494f 100644 --- a/pgpm/cli/src/commands/env.ts +++ b/pgpm/cli/src/commands/env.ts @@ -57,8 +57,7 @@ function configToEnvVars(config: PgConfig): Record { function printExports(config: PgConfig): void { const envVars = configToEnvVars(config); for (const [key, value] of Object.entries(envVars)) { - const escapedValue = value.replace(/\\/g, '\\\\').replace(/"/g, '\\"'); - console.log(`export ${key}="${escapedValue}"`); + console.log(`export ${key}=${value}`); } }