We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 02b0cf9 commit e30ad4aCopy full SHA for e30ad4a
1 file changed
pgpm/cli/src/commands/env.ts
@@ -57,8 +57,7 @@ function configToEnvVars(config: PgConfig): Record<string, string> {
57
function printExports(config: PgConfig): void {
58
const envVars = configToEnvVars(config);
59
for (const [key, value] of Object.entries(envVars)) {
60
- const escapedValue = value.replace(/\\/g, '\\\\').replace(/"/g, '\\"');
61
- console.log(`export ${key}="${escapedValue}"`);
+ console.log(`export ${key}=${value}`);
62
}
63
64
0 commit comments