Skip to content

Commit

Permalink
fix: fixed linting
Browse files Browse the repository at this point in the history
  • Loading branch information
SilverSting committed Jun 23, 2021
1 parent c4009fd commit 5d74b1f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/commands/import-export/make-export.js
Original file line number Diff line number Diff line change
Expand Up @@ -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)
);
};
Expand Down

0 comments on commit 5d74b1f

Please sign in to comment.