Skip to content

Commit

Permalink
Add Device Serial Number prefix, when Deploying App.
Browse files Browse the repository at this point in the history
  • Loading branch information
CartBlanche committed Jul 30, 2024
1 parent 91c3c58 commit 14f6f79
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ await AnsiConsole.Progress()
if (deployApp.HasValue && deployApp.Value)
{
task.Increment(20.00);
task.Description = $"{Strings.Provision.DeployingApp}";
task.Description = $"{formatedDevice}: [yellow]{Strings.Provision.DeployingApp}[/]";

var route = await MeadowConnectionManager.GetRouteFromSerialNumber(deviceSerialNumber!);
if (!string.IsNullOrWhiteSpace(route))
Expand All @@ -280,7 +280,7 @@ await AnsiConsole.Progress()
}

task.Value = 100.00;
task.Description = string.Format($"{formatedDevice}: [green]{Strings.Provision.UpdateComplete}[/]");
task.Description = $"{formatedDevice}: [green]{Strings.Provision.UpdateComplete}[/]";

task.StopTask();

Expand Down

0 comments on commit 14f6f79

Please sign in to comment.