Skip to content

Commit

Permalink
Fix status/log ordering
Browse files Browse the repository at this point in the history
  • Loading branch information
SteveDesmond-ca committed Oct 14, 2021
1 parent 8bb89bc commit 4f7314d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Command.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public override async Task<int> ExecuteAsync(CommandContext context, Settings se
private Func<StatusContext, Task> Run(Settings settings)
=> async ctx
=> await Factory
.App(settings.APIKey, s => _console.WriteLine(s), s => ctx.Status(s))
.App(settings.APIKey, s => ctx.Status(s), s => _console.WriteLine(s))
.Run(settings);
}
}
2 changes: 1 addition & 1 deletion src/GitHubLabelSync.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Version>0.1.0</Version>
<Version>0.1.1</Version>
<OutputType>Exe</OutputType>
<PackAsTool>true</PackAsTool>
<ToolCommandName>sync-labels</ToolCommandName>
Expand Down

0 comments on commit 4f7314d

Please sign in to comment.