Skip migrating installed_packages.json

This commit is contained in:
qu1ck 2021-11-23 14:49:40 -08:00
parent f97c7c78c8
commit 18b4ebcc17
1 changed files with 4 additions and 0 deletions

View File

@ -430,6 +430,10 @@ public:
return wxDIR_CONTINUE;
}
// Skip migrating PCM installed packages as packages themselves are not moved
if( file.GetFullName() == wxT( "installed_packages.json" ) )
return wxDIR_CONTINUE;
// Don't migrate hotkeys config files; we don't have a reasonable migration handler for them
// and so there is no way to resolve conflicts at the moment
if( file.GetExt() == wxT( "hotkeys" ) )