Skip to content

Commit f438578

Browse files
Return proper exit code
1 parent d905fcf commit f438578

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/GitHubLabelSync.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<Version>2.0.0</Version>
3+
<Version>2.0.1</Version>
44
<OutputType>Exe</OutputType>
55
<PackAsTool>true</PackAsTool>
66
<ToolCommandName>sync-labels</ToolCommandName>

src/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ namespace GitHubLabelSync;
44

55
public static class Program
66
{
7-
public static async Task Main(string[] args)
7+
public static async Task<int> Main(string[] args)
88
=> await new CommandApp<Command>().RunAsync(args);
99
}

0 commit comments

Comments
 (0)