From 0d25415dd8a99217e53006ec57b6c9eef641260b Mon Sep 17 00:00:00 2001 From: Dominique Louis Date: Wed, 27 Sep 2023 09:15:36 +0100 Subject: [PATCH] Fix typo in install complete message. --- Meadow.CLI.Core/Managers/DownloadManager.cs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Meadow.CLI.Core/Managers/DownloadManager.cs b/Meadow.CLI.Core/Managers/DownloadManager.cs index 12b87399..3674a5e6 100644 --- a/Meadow.CLI.Core/Managers/DownloadManager.cs +++ b/Meadow.CLI.Core/Managers/DownloadManager.cs @@ -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( @@ -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) {