File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed
plugin/src/main/kotlin/org/jlleitschuh/gradle/ktlint Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/).
77
88## [ Unreleased]
99
10+ - Disable Configuration Cache in generated pre-commit Gradle call [ #995 ] ( https://github.com/JLLeitschuh/ktlint-gradle/pull/995 )
1011- Update build to work with gradle 9.1 and Java 25 [ #962 ] ( https://github.com/JLLeitschuh/ktlint-gradle/pull/962 )
1112- Collapse sourcesets to simply build [ #964 ] ( https://github.com/JLLeitschuh/ktlint-gradle/pull/964 )
1213
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ private fun generateGradleCommand(
3636 } else {
3737 " ./gradlew"
3838 }
39- return " $gradleCommand --quiet $taskName -P$FILTER_INCLUDE_PROPERTY_NAME =\" ${' $' } CHANGED_FILES\" "
39+ return " $gradleCommand --quiet --no-configuration-cache $taskName -P$FILTER_INCLUDE_PROPERTY_NAME =\" ${' $' } CHANGED_FILES\" "
4040}
4141
4242private fun generateGitCommand (
You can’t perform that action at this time.
0 commit comments