@@ -36,15 +36,15 @@ private static int Main(string[] args)
36
36
var fileSystem = new FileSystem ( ) ;
37
37
38
38
return Parser . Default . ParseArguments < CreateSubOptions , AddAssetSubOptions , CloseSubOptions , PublishSubOptions , ExportSubOptions , InitSubOptions , ShowConfigSubOptions > ( args )
39
- . MapResult (
40
- ( CreateSubOptions opts ) => CreateReleaseAsync ( opts , fileSystem ) . Result ,
41
- ( AddAssetSubOptions opts ) => AddAssetsAsync ( opts ) . Result ,
42
- ( CloseSubOptions opts ) => CloseMilestoneAsync ( opts ) . Result ,
43
- ( PublishSubOptions opts ) => PublishReleaseAsync ( opts ) . Result ,
44
- ( ExportSubOptions opts ) => ExportReleasesAsync ( opts , fileSystem ) . Result ,
45
- ( InitSubOptions opts ) => CreateSampleConfigFile ( opts , fileSystem ) ,
46
- ( ShowConfigSubOptions opts ) => ShowConfig ( opts , fileSystem ) ,
47
- errs => 1 ) ;
39
+ . MapResult (
40
+ ( CreateSubOptions opts ) => CreateReleaseAsync ( opts , fileSystem ) . Result ,
41
+ ( AddAssetSubOptions opts ) => AddAssetsAsync ( opts ) . Result ,
42
+ ( CloseSubOptions opts ) => CloseMilestoneAsync ( opts ) . Result ,
43
+ ( PublishSubOptions opts ) => PublishReleaseAsync ( opts ) . Result ,
44
+ ( ExportSubOptions opts ) => ExportReleasesAsync ( opts , fileSystem ) . Result ,
45
+ ( InitSubOptions opts ) => CreateSampleConfigFile ( opts , fileSystem ) ,
46
+ ( ShowConfigSubOptions opts ) => ShowConfig ( opts , fileSystem ) ,
47
+ errs => 1 ) ;
48
48
}
49
49
50
50
private static async Task < int > CreateReleaseAsync ( CreateSubOptions subOptions , IFileSystem fileSystem )
0 commit comments