mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge.git
synced 2026-07-31 07:44:24 +02:00
Fix lint report path
The DirectoryProperty was being interpolated directly to a string, which would not result in a correct path.
This commit is contained in:
+1
-1
@@ -194,7 +194,7 @@ android {
|
||||
// If true, generate an HTML report (with issue explanations, sourcecode, etc)
|
||||
htmlReport = true
|
||||
// Optional path to report (default will be lint-results.html in the builddir)
|
||||
htmlOutput = file("${project.layout.buildDirectory}/reports/lint/lint.html")
|
||||
htmlOutput = layout.buildDirectory.file("reports/lint/lint.html").get().asFile
|
||||
// Ignore checks present in the snapshot
|
||||
baseline = file("lint-baseline.xml")
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user