diff --git a/lib/commands/import-export/make-export.js b/lib/commands/import-export/make-export.js index def1c70..fd5cf13 100644 --- a/lib/commands/import-export/make-export.js +++ b/lib/commands/import-export/make-export.js @@ -31,8 +31,8 @@ const makeExport = ({ settingsService, parameterStore }) => async ( filePath, target === 'env' ? `${Object.entries({ ...configs, ...secrets }) - .map(([key, val]) => `${key.replace(/[^A-Za-z0-9]+/g, '_')}="${val}"`) - .join('\n')}\n` + .map(([key, val]) => `${key.replace(/[^A-Za-z0-9]+/g, '_')}="${val}"`) + .join('\n')}\n` : JSON.stringify({ configs, secrets }, null, 2) ); };