mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
Merge pull request #765 from erri120/whitespace-extraction-fix
Fixed path with whitespace in archive not being extracted
This commit is contained in:
commit
e9586c38ac
@ -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