Skip to content

Commit

Permalink
Merge pull request #22 from square/pb/fix-coreoptions-gradleargs
Browse files Browse the repository at this point in the history
Fix custom Gradle flags not being properly set
  • Loading branch information
pablobaxter authored Dec 12, 2023
2 parents a851f41 + d1b19b6 commit b63780c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
## Unreleased
- `affected-paths-core`: Fix custom Gradle flags not being properly set

## v0.1.2
- `affected-paths-core`, `tooling-support-*`: Add in support for composite builds being analyzed
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@ public data class CoreOptions @JvmOverloads constructor(
}

internal val gradleArgs: List<String> = buildList {
addAll(customGradleFlags)
if (autoInjectPlugin) {
add("-I")
add(
Expand Down

0 comments on commit b63780c

Please sign in to comment.