Skip to content

Commit

Permalink
stabilize plugin configuration cache
Browse files Browse the repository at this point in the history
  • Loading branch information
ben-manes committed Sep 30, 2024
1 parent af9d01e commit 3a6cfd4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gradle/plugins/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,6 @@ fun setProjectEncoding() {
}
}

if (System.getenv("CI").isNullOrEmpty()) {
if (!providers.environmentVariable("CI").isPresent()) {

Check notice on line 93 in gradle/plugins/build.gradle.kts

View workflow job for this annotation

GitHub Actions / Qodana Community for JVM

Accessor call that can be replaced with property access syntax

Use of getter method instead of property access syntax

Check notice on line 93 in gradle/plugins/build.gradle.kts

View workflow job for this annotation

GitHub Actions / Qodana Community for JVM

Accessor call that can be replaced with property access syntax

Use of getter method instead of property access syntax
setProjectEncoding()
}

0 comments on commit 3a6cfd4

Please sign in to comment.