mirror of
https://github.com/xivdev/Penumbra.git
synced 2025-12-12 18:27:24 +01:00
Big oof.
This commit is contained in:
parent
801d9e24cf
commit
9ab08e288f
1 changed files with 2 additions and 2 deletions
|
|
@ -240,7 +240,7 @@ namespace Penumbra.Importer
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
private void AddMeta( DirectoryInfo baseFolder, DirectoryInfo groupFolder, ModGroup group, ModMeta meta )
|
private static void AddMeta( DirectoryInfo baseFolder, DirectoryInfo groupFolder, ModGroup group, ModMeta meta )
|
||||||
{
|
{
|
||||||
var Inf = new InstallerInfo
|
var Inf = new InstallerInfo
|
||||||
{
|
{
|
||||||
|
|
@ -257,7 +257,7 @@ namespace Penumbra.Importer
|
||||||
OptionFiles = new Dictionary< string, HashSet< string > >()
|
OptionFiles = new Dictionary< string, HashSet< string > >()
|
||||||
};
|
};
|
||||||
var optDir = new DirectoryInfo( Path.Combine( groupFolder.FullName, opt.Name.ReplaceInvalidPathSymbols() ) );
|
var optDir = new DirectoryInfo( Path.Combine( groupFolder.FullName, opt.Name.ReplaceInvalidPathSymbols() ) );
|
||||||
if( !optDir.Exists )
|
if( optDir.Exists )
|
||||||
{
|
{
|
||||||
foreach( var file in optDir.EnumerateFiles( "*.*", SearchOption.AllDirectories ) )
|
foreach( var file in optDir.EnumerateFiles( "*.*", SearchOption.AllDirectories ) )
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue