Skip to content

Commit 6c61db6

Browse files
authored
Merge pull request #124 from aws-actions/fix-param-error
Fix an issue in inputs2Parameters(): `Error: Unexpected key 'disableSourceOverride' found in params`
2 parents 7d9ae4e + 3cc8805 commit 6c61db6

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

code-build.js

-1
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,6 @@ function inputs2Parameters(inputs) {
264264
environmentTypeOverride,
265265
imageOverride,
266266
environmentVariablesOverride,
267-
disableSourceOverride,
268267
};
269268
}
270269

test/code-build-test.js

-1
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,6 @@ describe("inputs2Parameters", () => {
230230
.to.haveOwnProperty("environmentTypeOverride")
231231
.and.to.equal(undefined);
232232
expect(test).to.haveOwnProperty("imageOverride").and.to.equal(undefined);
233-
expect(test).to.haveOwnProperty("disableSourceOverride").and.to.equal(undefined);
234233

235234
// I send everything that starts 'GITHUB_'
236235
expect(test)

0 commit comments

Comments
 (0)