Skip to content

Commit

Permalink
Fix another array
Browse files Browse the repository at this point in the history
  • Loading branch information
farski committed Dec 20, 2024
1 parent 2ebe950 commit 20d1484
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ci/src/build-handler/index.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ async function triggerBuild(ciContentsResponse, event) {
buildspec,
environmentVariables,
process.env.X64_CODEBUILD_PROJECT_NAME,
{ name: 'PRX_TARGET_ARCHITECTURE', value: 'x86_64' },
[{ name: 'PRX_TARGET_ARCHITECTURE', value: 'x86_64' }],
);
}

Expand All @@ -203,7 +203,7 @@ async function triggerBuild(ciContentsResponse, event) {
buildspec,
environmentVariables,
process.env.ARM_CODEBUILD_PROJECT_NAME,
{ name: 'PRX_TARGET_ARCHITECTURE', value: 'aarch64' },
[{ name: 'PRX_TARGET_ARCHITECTURE', value: 'aarch64' }],
);
}
} else {
Expand All @@ -212,7 +212,7 @@ async function triggerBuild(ciContentsResponse, event) {
buildspec,
environmentVariables,
process.env.X64_CODEBUILD_PROJECT_NAME,
{ name: 'PRX_TARGET_ARCHITECTURE', value: 'x86_64' },
[{ name: 'PRX_TARGET_ARCHITECTURE', value: 'x86_64' }],
);
}

Expand Down

0 comments on commit 20d1484

Please sign in to comment.