Skip to content

Commit 33eff91

Browse files
authored
Fix missing space in CLI (#11912)
1 parent 3c0b895 commit 33eff91

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Aspire.Cli/Commands/PublishCommandBase.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ protected override async Task<int> ExecuteAsync(ParseResult parseResult, Cancell
186186
InteractionService.DisplayMessage("bug", InteractionServiceStrings.WaitingForDebuggerToAttachToAppHost);
187187
}
188188

189-
var backchannel = await InteractionService.ShowStatusAsync($":hammer_and_wrench: {GetProgressMessage()}", async () =>
189+
var backchannel = await InteractionService.ShowStatusAsync($":hammer_and_wrench: {GetProgressMessage()}", async () =>
190190
{
191191
return await backchannelCompletionSource.Task.ConfigureAwait(false);
192192
});

0 commit comments

Comments
 (0)