We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 226c375 commit ad6e8daCopy full SHA for ad6e8da
CHANGELOG.md
@@ -1 +1,2 @@
1
+- Fixed ext:export command so that it correctly returns system params in the .env file (#8881)
2
- Fixed an issue where the MCP server could not successfully use Application Default Credentials. (#8896)
src/commands/ext-export.ts
@@ -66,7 +66,7 @@ export const command = new Command("ext:export")
66
}
67
68
const manifestSpecs = withRefSubbed.map((spec) => {
69
- const paramCopy = { ...spec.params };
+ const paramCopy = { ...spec.params, ...spec.systemParams };
70
if (spec.eventarcChannel) {
71
paramCopy.EVENTARC_CHANNEL = spec.eventarcChannel;
72
0 commit comments