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 a8799ae
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion 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
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 a8799ae

Please sign in to comment.