Skip to content

Commit e30ad4a

Browse files
committed
fix: remove double quotes from pgpm env output
1 parent 02b0cf9 commit e30ad4a

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

pgpm/cli/src/commands/env.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,7 @@ function configToEnvVars(config: PgConfig): Record<string, string> {
5757
function printExports(config: PgConfig): void {
5858
const envVars = configToEnvVars(config);
5959
for (const [key, value] of Object.entries(envVars)) {
60-
const escapedValue = value.replace(/\\/g, '\\\\').replace(/"/g, '\\"');
61-
console.log(`export ${key}="${escapedValue}"`);
60+
console.log(`export ${key}=${value}`);
6261
}
6362
}
6463

0 commit comments

Comments
 (0)