mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
Prefix 7zip path names with a slash
This commit is contained in:
parent
bb9ef89dee
commit
fb8a56aedb
@ -140,7 +140,7 @@ namespace Wabbajack.VirtualFileSystem
|
||||
if (onlyFiles != null)
|
||||
{
|
||||
tmpFile = new TempFile();
|
||||
await tmpFile.Path.WriteAllLinesAsync(onlyFiles.Select(f => (string)f).ToArray());
|
||||
await tmpFile.Path.WriteAllLinesAsync(onlyFiles.Select(f => "\\"+(string)f).ToArray());
|
||||
process.Arguments = new object[]
|
||||
{
|
||||
"x", "-bsp1", "-y", $"-o\"{dest.Dir}\"", source, $"@\"{tmpFile.Path}\"", "-mmt=off"
|
||||
|
Loading…
Reference in New Issue
Block a user