mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
HOTFIX: fix "Could not find part of path" bug related to the profiles folder
This commit is contained in:
parent
cfb928bfce
commit
d3401f7778
@ -1,5 +1,8 @@
|
||||
### Changelog
|
||||
|
||||
#### Version - 3.0.1.7 - 9/27/2022
|
||||
* HOTFIX: fix "Could not find part of path" bug related to the profiles folder
|
||||
|
||||
#### Version - 3.0.1.6 - 9/26/2022
|
||||
* Fix Cyberpunk 2077 GoG recognition
|
||||
* Add a CLI command `list-games` to list all games recognized by WJ and their versions/locations
|
||||
|
@ -173,7 +173,7 @@ public class StandardInstaller : AInstaller<StandardInstaller>
|
||||
var profileDir = _configuration.Install.Combine("profiles");
|
||||
if (!profileDir.DirectoryExists()) return;
|
||||
|
||||
profileDir.Combine("profiles")
|
||||
profileDir
|
||||
.EnumerateFiles()
|
||||
.Where(f => f.FileName == Consts.SettingsIni)
|
||||
.Do(f =>
|
||||
|
Loading…
Reference in New Issue
Block a user