From e81b162d59f7a5af973f89d21888d74b964b19fa Mon Sep 17 00:00:00 2001 From: Ellpeck Date: Sat, 16 Oct 2021 19:53:12 +0200 Subject: [PATCH] put plist into contents --- GameBundle/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GameBundle/Program.cs b/GameBundle/Program.cs index 2cc0233..2cb7631 100644 --- a/GameBundle/Program.cs +++ b/GameBundle/Program.cs @@ -146,7 +146,7 @@ namespace GameBundle { continue; var destDir = resRegex.Any(r => r.IsMatch(file.Name)) ? resources : macOs; if (file.Name.EndsWith("plist")) - destDir = app; + destDir = contents; file.MoveTo(Path.Combine(destDir.FullName, file.Name), true); } foreach (var sub in dirs) {