diff options
author | siegmund-heiss-ich <119589995+siegmund-heiss-ich@users.noreply.github.com> | 2023-06-09 15:35:24 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-09 15:35:24 +0200 |
commit | 27ee86f33b8fb562f70c5fc2850f85683315626d (patch) | |
tree | 063a995cad2454a157472dd50017360bb55f6e1a /src | |
parent | f7ec3102316cb209614f52afc5b069e33bcf6924 (diff) |
Exclude macOS from checking for changed files (#5270)1.1.879
Diffstat (limited to 'src')
-rw-r--r-- | src/Ryujinx.Ava/Modules/Updater/Updater.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Ryujinx.Ava/Modules/Updater/Updater.cs b/src/Ryujinx.Ava/Modules/Updater/Updater.cs index 839526c4..71d978c6 100644 --- a/src/Ryujinx.Ava/Modules/Updater/Updater.cs +++ b/src/Ryujinx.Ava/Modules/Updater/Updater.cs @@ -741,7 +741,7 @@ namespace Ryujinx.Modules var files = Directory.EnumerateFiles(HomeDir); // All files directly in base dir. // Determine and exclude user files only when the updater is running, not when cleaning old files - if (_running) + if (_running && !OperatingSystem.IsMacOS()) { // Compare the loose files in base directory against the loose files from the incoming update, and store foreign ones in a user list. var oldFiles = Directory.EnumerateFiles(HomeDir, "*", SearchOption.TopDirectoryOnly).Select(Path.GetFileName); |