Skip to content

Commit a73fb25

Browse files
generator: fix sync command not working
1 parent 50dd9bd commit a73fb25

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

generators/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ namespace Generators;
55
public static class Program
66
{
77
static void Main(string[] args) =>
8-
Parser.Default.ParseArguments<NewOptions, UpdateOptions>(args)
8+
Parser.Default.ParseArguments<NewOptions, UpdateOptions, SyncOptions>(args)
99
.WithParsed<NewOptions>(HandleNewCommand)
1010
.WithParsed<UpdateOptions>(HandleUpdateCommand)
1111
.WithParsed<SyncOptions>(HandleSyncCommand)

0 commit comments

Comments
 (0)