Skip to content

Commit f5c556d

Browse files
committed
docs(evaluator): Fix-up the docs for two CLI options
Previously, the docs referred to package configurations which did not make sense, see also [1]. [1] 9104541 Signed-off-by: Frank Viernau <[email protected]>
1 parent 5edbe72 commit f5c556d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

plugins/commands/evaluator/src/main/kotlin/EvaluatorCommand.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ class EvaluatorCommand : OrtCommand(
149149
private val packageCurationsFile by option(
150150
"--package-curations-file",
151151
help = "A file containing package curations. This replaces all package curations contained in the given ORT " +
152-
"result file with the ones present in the given file and, if enabled, those from the package " +
152+
"result file with the ones present in the given file and, if enabled, those from the repository " +
153153
"configuration."
154154
).convert { it.expandTilde() }
155155
.file(mustExist = true, canBeFile = true, canBeDir = false, mustBeWritable = false, mustBeReadable = true)
@@ -160,7 +160,7 @@ class EvaluatorCommand : OrtCommand(
160160
"--package-curations-dir",
161161
help = "A directory containing package curation files. This replaces all package curations contained in the " +
162162
"given ORT result file with the ones present in the given directory and, if enabled, those from the " +
163-
"package configuration file."
163+
"repository configuration."
164164
).convert { it.expandTilde() }
165165
.file(mustExist = true, canBeFile = false, canBeDir = true, mustBeWritable = false, mustBeReadable = true)
166166
.convert { it.absoluteFile.normalize() }

0 commit comments

Comments
 (0)