Skip to content

Commit

Permalink
docs(analyer-command): Align with simpler wording from Jenkinsfile
Browse files Browse the repository at this point in the history
Signed-off-by: Sebastian Schuberth <[email protected]>
  • Loading branch information
sschuberth committed Feb 13, 2024
1 parent 8819ac9 commit 0264f7f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugins/commands/analyzer/src/main/kotlin/AnalyzerCommand.kt
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,8 @@ class AnalyzerCommand : OrtCommand(
) {
private val inputDir by option(
"--input-dir", "-i",
help = "The project directory to analyze. As a special case, if only one package manager is enabled, this " +
"may point to a definition file for that package manager to only analyze that single project."
help = "The project directory to analyze. May point to a definition file if only a single package manager is " +
"enabled."
).convert { it.expandTilde() }
.file(mustExist = true, canBeFile = true, canBeDir = true, mustBeWritable = false, mustBeReadable = true)
.convert { it.absoluteFile.normalize() }
Expand Down

0 comments on commit 0264f7f

Please sign in to comment.