mirror of
https://github.com/KillzXGaming/Switch-Toolbox
synced 2024-11-10 07:04:36 +00:00
Don't delete the user's hashes folder on update (#558)
This commit is contained in:
parent
cab002cae1
commit
3d5a0a0422
1 changed files with 5 additions and 1 deletions
|
@ -90,8 +90,12 @@ namespace Updater
|
|||
|
||||
string dirName = new DirectoryInfo(dir).Name;
|
||||
|
||||
if (Directory.Exists(Path.Combine(folderDir, dirName + @"\")))
|
||||
if (!dirName.Equals("Hashes", StringComparison.CurrentCultureIgnoreCase) // Let's keep the users custom hashes in tact
|
||||
&& Directory.Exists(Path.Combine(folderDir, dirName + @"\")))
|
||||
{
|
||||
Directory.Delete(Path.Combine(folderDir, dirName + @"\"), true);
|
||||
}
|
||||
|
||||
Directory.Move(dir, Path.Combine(folderDir, dirName + @"\"));
|
||||
}
|
||||
foreach (string file in Directory.GetFiles("master/"))
|
||||
|
|
Loading…
Reference in a new issue