Skip to content

Commit

Permalink
Fix bad variable
Browse files Browse the repository at this point in the history
  • Loading branch information
NickPhura committed Nov 6, 2023
1 parent 60d2ef0 commit 1af8f80
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions app/.pipeline/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ function processOptions(options) {
return result;
}

options = processOptions(options);
const options = processOptions(rawOptions);

const phases = {
build: {
Expand Down Expand Up @@ -81,7 +81,7 @@ const phases = {
(isStaticDeployment && pipelineConfigMap.staticUrls.dev) ||
`${pipelineConfigMap.module.app}-${changeId}-af2668-dev.apps.silver.devops.gov.bc.ca`,
apiHost:
(isStaticDeployment && pipelineConfigMap.pipelineConfigMap.staticUrlsAPI.dev) ||
(isStaticDeployment && pipelineConfigMap.staticUrlsAPI.dev) ||
`${pipelineConfigMap.module.api}-${changeId}-af2668-dev.apps.silver.devops.gov.bc.ca`,
siteminderLogoutURL: pipelineConfigMap.siteminderLogoutURL.dev,
maxUploadNumFiles,
Expand All @@ -105,7 +105,7 @@ const phases = {
version: pipelineConfigMap.version,
tag: `test-${pipelineConfigMap.version}`,
host: pipelineConfigMap.staticUrls.test,
apiHost: pipelineConfigMap.pipelineConfigMap.staticUrlsAPI.test,
apiHost: pipelineConfigMap.staticUrlsAPI.test,
siteminderLogoutURL: pipelineConfigMap.siteminderLogoutURL.test,
maxUploadNumFiles,
maxUploadFileSize,
Expand All @@ -128,7 +128,7 @@ const phases = {
version: pipelineConfigMap.version,
tag: `prod-${pipelineConfigMap.version}`,
host: pipelineConfigMap.staticUrls.prod,
apiHost: pipelineConfigMap.pipelineConfigMap.staticUrlsAPI.prod,
apiHost: pipelineConfigMap.staticUrlsAPI.prod,
siteminderLogoutURL: pipelineConfigMap.siteminderLogoutURL.prod,
maxUploadNumFiles,
maxUploadFileSize,
Expand Down
2 changes: 1 addition & 1 deletion database/.pipeline/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ function processOptions(options) {
return result;
}

options = processOptions(options);
const options = processOptions(rawOptions);

const phases = {
build: {
Expand Down

0 comments on commit 1af8f80

Please sign in to comment.