Skip to content

Commit ddccdc8

Browse files
committed
(maint) Fixed open command not available
Due to a mistake in a previous pull request the open command was not made available to be used as the OpenSubOptions class is not specifically given to the CommandLineParser library. This commit makes this command available again.
1 parent f4df622 commit ddccdc8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Source/GitReleaseManager.Cli/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ private static async Task<int> Main(string[] args)
3939

4040
try
4141
{
42-
return await Parser.Default.ParseArguments<CreateSubOptions, DiscardSubOptions, AddAssetSubOptions, CloseSubOptions, PublishSubOptions, ExportSubOptions, InitSubOptions, ShowConfigSubOptions, LabelSubOptions>(args)
42+
return await Parser.Default.ParseArguments<CreateSubOptions, DiscardSubOptions, AddAssetSubOptions, CloseSubOptions, OpenSubOptions, PublishSubOptions, ExportSubOptions, InitSubOptions, ShowConfigSubOptions, LabelSubOptions>(args)
4343
.WithParsed<BaseSubOptions>(LogConfiguration.ConfigureLogging)
4444
.WithParsed<BaseSubOptions>(CreateFiglet)
4545
.WithParsed<BaseSubOptions>(LogOptions)

0 commit comments

Comments
 (0)