diff --git a/CHANGELOG.md b/CHANGELOG.md index 096b22ff9..502f36d05 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ ### Changelog +#### Version - 3.7.2.1 - 9/1/2024 +* Fixed a bug with the html reports when in a folder with a space in the name + #### Version - 3.7.2.0 - 8/25/2024 * Added a new button to the installer configuration window for verifying installs. This runs the same code as the verify CLI command, now it's in the UI for easier access. The output of this command is written to a `.html` file and opened in the default browser. diff --git a/Wabbajack.CLI/Verbs/VerifyModlistInstall.cs b/Wabbajack.CLI/Verbs/VerifyModlistInstall.cs index 79bbff820..1e186b372 100644 --- a/Wabbajack.CLI/Verbs/VerifyModlistInstall.cs +++ b/Wabbajack.CLI/Verbs/VerifyModlistInstall.cs @@ -1,5 +1,4 @@ -using System; -using System.Collections.Generic; +using System.Collections.Generic; using System.Diagnostics; using System.IO; using System.Linq; @@ -137,7 +136,7 @@ await stream.WriteLineAsync( _logger.LogInformation("Report written to {Report}", reportFile.Path); - Process.Start(new ProcessStartInfo("cmd.exe", $"/c start {reportFile}") + Process.Start(new ProcessStartInfo("cmd.exe", $"start /c \"{reportFile.Path}\"") { CreateNoWindow = true, }); diff --git a/Wabbajack.Installer/StandardInstaller.cs b/Wabbajack.Installer/StandardInstaller.cs index 7db406a74..4f989f09a 100644 --- a/Wabbajack.Installer/StandardInstaller.cs +++ b/Wabbajack.Installer/StandardInstaller.cs @@ -210,7 +210,7 @@ private void ShowMissingManualReport(Archive[] toArray) writer.Write(""); } - Process.Start(new ProcessStartInfo("cmd.exe", $"/c start {report}") + Process.Start(new ProcessStartInfo("cmd.exe", $"start /c \"{report}\"") { CreateNoWindow = true, });