mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
Fixed path with whitespace in archive not being extracted
This commit is contained in:
parent
9b71e1b644
commit
b1011bd63e
@ -142,8 +142,8 @@ namespace Wabbajack.VirtualFileSystem
|
||||
//It's stupid that we have to do this, but 7zip's file pattern matching isn't very fuzzy
|
||||
IEnumerable<string> AllVariants(string input)
|
||||
{
|
||||
yield return input;
|
||||
yield return "\\" + input;
|
||||
yield return $"\"{input}\"";
|
||||
yield return $"\"\\{input}\"";
|
||||
}
|
||||
|
||||
tmpFile = new TempFile();
|
||||
|
Loading…
Reference in New Issue
Block a user