From 0264f7f78383fbb88098f3c37f701227e3ba3f8e Mon Sep 17 00:00:00 2001 From: Sebastian Schuberth Date: Mon, 12 Feb 2024 22:51:43 +0100 Subject: [PATCH] docs(analyer-command): Align with simpler wording from `Jenkinsfile` Signed-off-by: Sebastian Schuberth --- plugins/commands/analyzer/src/main/kotlin/AnalyzerCommand.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/commands/analyzer/src/main/kotlin/AnalyzerCommand.kt b/plugins/commands/analyzer/src/main/kotlin/AnalyzerCommand.kt index a2b310f57515c..3fab3993c58d8 100644 --- a/plugins/commands/analyzer/src/main/kotlin/AnalyzerCommand.kt +++ b/plugins/commands/analyzer/src/main/kotlin/AnalyzerCommand.kt @@ -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() }