Skip to content

Commit ad6e8da

Browse files
authored
fix: fix ext:export command (#8881)
1 parent 226c375 commit ad6e8da

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1+
- Fixed ext:export command so that it correctly returns system params in the .env file (#8881)
12
- Fixed an issue where the MCP server could not successfully use Application Default Credentials. (#8896)

src/commands/ext-export.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ export const command = new Command("ext:export")
6666
}
6767

6868
const manifestSpecs = withRefSubbed.map((spec) => {
69-
const paramCopy = { ...spec.params };
69+
const paramCopy = { ...spec.params, ...spec.systemParams };
7070
if (spec.eventarcChannel) {
7171
paramCopy.EVENTARC_CHANNEL = spec.eventarcChannel;
7272
}

0 commit comments

Comments
 (0)