Skip to content

Commit 46c7f94

Browse files
committed
chore(commands): Tweak plugin display names
Capitalize them and make longer names more readable. Signed-off-by: Sebastian Schuberth <sebastian@doubleopen.org>
1 parent b855a50 commit 46c7f94

File tree

15 files changed

+15
-15
lines changed

15 files changed

+15
-15
lines changed

plugins/commands/advisor/src/main/kotlin/AdviseCommand.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ import org.ossreviewtoolkit.utils.ort.ortConfigDirectory
6262

6363
@OrtPlugin(
6464
id = "advise",
65-
displayName = "advise",
65+
displayName = "Advise",
6666
description = "Check dependencies for security vulnerabilities.",
6767
factory = OrtCommandFactory::class
6868
)

plugins/commands/analyzer/src/main/kotlin/AnalyzeCommand.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ import org.ossreviewtoolkit.utils.ort.ortConfigDirectory
6767

6868
@OrtPlugin(
6969
id = "analyze",
70-
displayName = "analyze",
70+
displayName = "Analyze",
7171
description = "Determine dependencies of a software project.",
7272
factory = OrtCommandFactory::class
7373
)

plugins/commands/compare/src/main/kotlin/CompareCommand.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ import org.ossreviewtoolkit.utils.ort.Environment
5353

5454
@OrtPlugin(
5555
id = "compare",
56-
displayName = "compare",
56+
displayName = "Compare",
5757
description = "Compare two ORT results with various methods.",
5858
factory = OrtCommandFactory::class
5959
)

plugins/commands/config/src/main/kotlin/ConfigCommand.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ import org.ossreviewtoolkit.utils.ort.ORT_REFERENCE_CONFIG_FILENAME
4040

4141
@OrtPlugin(
4242
id = "config",
43-
displayName = "config",
43+
displayName = "Config",
4444
description = "Show different ORT configurations.",
4545
factory = OrtCommandFactory::class
4646
)

plugins/commands/downloader/src/main/kotlin/DownloadCommand.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ import org.ossreviewtoolkit.utils.spdx.SpdxLicenseChoice
108108

109109
@OrtPlugin(
110110
id = "download",
111-
displayName = "download",
111+
displayName = "Download",
112112
description = "Fetch source code from a remote location.",
113113
factory = OrtCommandFactory::class
114114
)

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ import org.ossreviewtoolkit.utils.ort.ortConfigDirectory
8686

8787
@OrtPlugin(
8888
id = "evaluate",
89-
displayName = "evaluate",
89+
displayName = "Evaluate",
9090
description = "Evaluate ORT result files against policy rules.",
9191
factory = OrtCommandFactory::class
9292
)

plugins/commands/migrate/src/main/kotlin/MigrateCommand.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ import org.ossreviewtoolkit.utils.common.safeMkdirs
4545

4646
@OrtPlugin(
4747
id = "migrate",
48-
displayName = "migrate",
48+
displayName = "Migrate",
4949
description = "Assist with migrating ORT configuration to newer ORT versions.",
5050
factory = OrtCommandFactory::class
5151
)

plugins/commands/notifier/src/main/kotlin/NotifyCommand.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ import org.ossreviewtoolkit.utils.ort.ortConfigDirectory
4444

4545
@OrtPlugin(
4646
id = "notify",
47-
displayName = "notify",
47+
displayName = "Notify",
4848
description = "Create notifications based on an ORT result.",
4949
factory = OrtCommandFactory::class
5050
)

plugins/commands/plugins/src/main/kotlin/PluginsCommand.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ import org.ossreviewtoolkit.scanner.ScannerWrapperFactory
3939

4040
@OrtPlugin(
4141
id = "plugins",
42-
displayName = "plugins",
42+
displayName = "Plugins",
4343
description = "Print information about the installed ORT plugins.",
4444
factory = OrtCommandFactory::class
4545
)

plugins/commands/reporter/src/main/kotlin/ReportCommand.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ import org.ossreviewtoolkit.utils.spdx.SpdxConstants.LICENSE_REF_PREFIX
8686

8787
@OrtPlugin(
8888
id = "report",
89-
displayName = "report",
89+
displayName = "Report",
9090
description = "Present Analyzer, Scanner and Evaluator results in various formats.",
9191
factory = OrtCommandFactory::class
9292
)

0 commit comments

Comments
 (0)