diff --git a/Meadow.CLI/Commands/MeadowCommand.cs b/Meadow.CLI/Commands/MeadowCommand.cs index 7b8c44f6..24ccb3b9 100644 --- a/Meadow.CLI/Commands/MeadowCommand.cs +++ b/Meadow.CLI/Commands/MeadowCommand.cs @@ -69,9 +69,10 @@ public virtual async ValueTask ExecuteAsync(IConsole console) if (updateExists) { logger.LogInformation( - "An update is available. Current Version {currentVersion} Latest Version {latestVersion}. Run `dotnet tool update WildernessLabs.Meadow.CLI --global` to update", + "A Meadow.CLI update is available. Current Version {currentVersion} Latest Version {latestVersion}.", currentVersion, latestVersion); + logger.LogInformation($"Run `dotnet tool update WildernessLabs.Meadow.CLI --global` to update. {Environment.NewLine}"); } } } diff --git a/Meadow.CLI/Commands/Utility/InstallDfuUtilCommand.cs b/Meadow.CLI/Commands/Utility/InstallDfuUtilCommand.cs index a7b7a58f..b7eaf7d2 100644 --- a/Meadow.CLI/Commands/Utility/InstallDfuUtilCommand.cs +++ b/Meadow.CLI/Commands/Utility/InstallDfuUtilCommand.cs @@ -32,7 +32,7 @@ public override async ValueTask ExecuteAsync(IConsole console) } else { - _logger.LogInformation("To install on Windows, you'll need to open a Command Prompt or Terminal as an administrator"); + _logger.LogInformation("To install dfu-util on Windows you'll need to open a Command Prompt or Terminal as an administrator and re-run the `meadow install dfu-util` command again."); } } else if (RuntimeInformation.IsOSPlatform(OSPlatform.OSX))