Skip to content

Commit

Permalink
3.7.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
halgari committed Sep 1, 2024
1 parent 1fad0f1 commit cf343e2
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
5 changes: 2 additions & 3 deletions Wabbajack.CLI/Verbs/VerifyModlistInstall.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
using System;
using System.Collections.Generic;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Linq;
Expand Down Expand Up @@ -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,
});
Expand Down
2 changes: 1 addition & 1 deletion Wabbajack.Installer/StandardInstaller.cs
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ private void ShowMissingManualReport(Archive[] toArray)
writer.Write("</body></html>");
}

Process.Start(new ProcessStartInfo("cmd.exe", $"/c start {report}")
Process.Start(new ProcessStartInfo("cmd.exe", $"start /c \"{report}\"")
{
CreateNoWindow = true,
});
Expand Down

0 comments on commit cf343e2

Please sign in to comment.