Skip to content

Commit 4495781

Browse files
stevefan1999-personalbuehler
andauthoredAug 28, 2023
fix: version command (#591)
Because System is a global import, this Version class actually refers to [Version Class (System) | Microsoft Learn](https://learn.microsoft.com/en-us/dotnet/api/system.version?view=net-7.0). Co-authored-by: Christoph Bühler <buehler@users.noreply.github.com>
1 parent 570ba5f commit 4495781

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/KubeOps/Operator/Commands/RunOperator.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ namespace KubeOps.Operator.Commands;
1010
[Subcommand(typeof(Install))]
1111
[Subcommand(typeof(Uninstall))]
1212
[Subcommand(typeof(Management.Webhooks.Webhooks))]
13-
[Subcommand(typeof(Version))]
13+
[Subcommand(typeof(Utilities.Version))]
1414
internal class RunOperator
1515
{
1616
private readonly IHost _host;

0 commit comments

Comments
 (0)
Please sign in to comment.