Skip to content

Commit

Permalink
Fix typo in install complete message.
Browse files Browse the repository at this point in the history
  • Loading branch information
CartBlanche committed Sep 27, 2023
1 parent 5b42303 commit c39c1cf
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Meadow.CLI.Core/Managers/DownloadManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,9 @@ public async Task InstallDfuUtil(bool is64Bit = true,
WildernessLabsTemp);

var dfuUtilExe = new FileInfo(
Path.Combine(WildernessLabsTemp, is64Bit ? "win64" : "win32", "dfu-util.exe"));
Path.Combine(WildernessLabsTemp,
is64Bit ? "win64" : "win32",
"dfu-util.exe"));

var libUsbDll = new FileInfo(
Path.Combine(
Expand Down Expand Up @@ -257,7 +259,7 @@ public async Task InstallDfuUtil(bool is64Bit = true,
File.Delete(libUsbPath);
}

_logger.LogInformation("dfu-util 0.10 installed");
_logger.LogInformation("dfu-util 0.11 installed");
}
catch (Exception ex)
{
Expand Down

0 comments on commit c39c1cf

Please sign in to comment.