Skip to content

Commit d2fb6e0

Browse files
EddieRinglesarahhaggarty
authored andcommitted
fix: invalid kotlin build report config directions
Wrapping the json directory property with quotes results in an error. RE: KT-71049 Signed-off-by: Eddie Ringle <[email protected]>
1 parent e2d3967 commit d2fb6e0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/topics/gradle/gradle-compilation-and-caches.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -463,7 +463,7 @@ kotlin.build.report.output=file,single_file,http,build_scan,json
463463
kotlin.build.report.single_file=some_filename
464464
465465
# Mandatory if json output is used. Where to put reports
466-
kotlin.build.report.json.directory="my/directory/path"
466+
kotlin.build.report.json.directory=my/directory/path
467467
468468
# Optional. Output directory for file-based reports. Default: build/reports/kotlin-build/
469469
kotlin.build.report.file.output_dir=kotlin-reports

docs/topics/whatsnew20.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1598,7 +1598,7 @@ To configure JSON output format for your build reports, declare the following pr
15981598
kotlin.build.report.output=json
15991599
16001600
// The directory to store your build reports
1601-
kotlin.build.report.json.directory="my/directory/path"
1601+
kotlin.build.report.json.directory=my/directory/path
16021602
```
16031603

16041604
Alternatively, you can run the following command:

0 commit comments

Comments
 (0)