Commit 9e81dc7
authored
fix(pipelines):
The rendering of `additionalInputs` was using a bashism that is not
supported by CodeBuild by default.
Turn
```
[[ ! -d "directory" ]]
```
into
```
[ ! -d "directory" ]
```
Fixes #17224
----
*By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*additionalInputs not working (#17279)1 parent 332ce4d commit 9e81dc7
File tree
3 files changed
+4
-4
lines changed- packages/@aws-cdk/pipelines
- lib/codepipeline
- test
- codepipeline
- compliance
3 files changed
+4
-4
lines changedLines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
333 | 333 | | |
334 | 334 | | |
335 | 335 | | |
336 | | - | |
| 336 | + | |
337 | 337 | | |
338 | 338 | | |
339 | 339 | | |
| |||
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
34 | 34 | | |
35 | 35 | | |
36 | 36 | | |
37 | | - | |
| 37 | + | |
38 | 38 | | |
39 | 39 | | |
40 | 40 | | |
| |||
Lines changed: 2 additions & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
947 | 947 | | |
948 | 948 | | |
949 | 949 | | |
950 | | - | |
951 | | - | |
| 950 | + | |
| 951 | + | |
952 | 952 | | |
953 | 953 | | |
954 | 954 | | |
| |||
0 commit comments