Skip to content

Commit cf343e2

Browse files
committed
3.7.2.1
1 parent 1fad0f1 commit cf343e2

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
### Changelog
22

3+
#### Version - 3.7.2.1 - 9/1/2024
4+
* Fixed a bug with the html reports when in a folder with a space in the name
5+
36
#### Version - 3.7.2.0 - 8/25/2024
47
* 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
58
is written to a `.html` file and opened in the default browser.

Wabbajack.CLI/Verbs/VerifyModlistInstall.cs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
using System;
2-
using System.Collections.Generic;
1+
using System.Collections.Generic;
32
using System.Diagnostics;
43
using System.IO;
54
using System.Linq;
@@ -137,7 +136,7 @@ await stream.WriteLineAsync(
137136

138137
_logger.LogInformation("Report written to {Report}", reportFile.Path);
139138

140-
Process.Start(new ProcessStartInfo("cmd.exe", $"/c start {reportFile}")
139+
Process.Start(new ProcessStartInfo("cmd.exe", $"start /c \"{reportFile.Path}\"")
141140
{
142141
CreateNoWindow = true,
143142
});

Wabbajack.Installer/StandardInstaller.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ private void ShowMissingManualReport(Archive[] toArray)
210210
writer.Write("</body></html>");
211211
}
212212

213-
Process.Start(new ProcessStartInfo("cmd.exe", $"/c start {report}")
213+
Process.Start(new ProcessStartInfo("cmd.exe", $"start /c \"{report}\"")
214214
{
215215
CreateNoWindow = true,
216216
});

0 commit comments

Comments
 (0)