Skip to content

Commit

Permalink
Fixes a bug where paramaterized values were displayed but not written…
Browse files Browse the repository at this point in the history
… to .env files (#4515)

* fixes a bug where paramaterized values were displayed but not written to .env files

* Add changelog

* merge conflict
  • Loading branch information
joehan committed May 4, 2022
1 parent c781e3c commit 1a75c1c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
- Add support for secrets to v2 functions (#4451).
- Fixes an issue where `ext:export` would write different param values than what it displayed in the prompt (#4515).
2 changes: 1 addition & 1 deletion src/commands/ext-export.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ module.exports = new Command("ext:export")
return;
}

const manifestSpecs = withRef.map((spec) => {
const manifestSpecs = withRefSubbed.map((spec) => {
const paramCopy = { ...spec.params };
if (spec.eventarcChannel) {
paramCopy.EVENTARC_CHANNEL = spec.eventarcChannel;
Expand Down

0 comments on commit 1a75c1c

Please sign in to comment.