Skip to content

Commit 2d1d3b0

Browse files
Jesse MacFadyenJesse MacFadyen
authored andcommitted
nit: add auditUserId in a way that is acceptable by copilot :fingerscrossed:
1 parent b6384f9 commit 2d1d3b0

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/commands/app/deploy.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,8 +132,7 @@ class Deploy extends BuildCommand {
132132
// - break into smaller pieces deploy, allowing to first deploy all actions then all web assets
133133
for (let i = 0; i < keys.length; ++i) {
134134
const k = keys[i]
135-
const v = setRuntimeApiHostAndAuthHandler(values[i])
136-
v.auditUserId = appInfo.auditUserId
135+
const v = { auditUserId: appInfo.auditUserId, ...setRuntimeApiHostAndAuthHandler(values[i])}
137136
await this.deploySingleConfig({ name: k, config: v, originalConfig: values[i], flags, spinner })
138137
if (cliDetails?.accessToken && v.app.hasFrontend && flags['web-assets']) {
139138
const opItems = getFilesCountWithExtension(v.web.distProd)

0 commit comments

Comments
 (0)