From 1b7947b19627cdcce371c760579f33a50b2d514b Mon Sep 17 00:00:00 2001 From: walon Date: Wed, 29 Nov 2023 16:09:05 +0800 Subject: [PATCH] =?UTF-8?q?[fix]=20=E4=BF=AE=E5=A4=8D2019=20Mac=20Standalo?= =?UTF-8?q?ne=20=E6=B2=A1=E6=9C=89=E6=AD=A3=E7=A1=AE=20PatchScriptingAssem?= =?UTF-8?q?blyList=E7=9A=84bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Editor/BuildProcessors/PatchScriptingAssemblyList.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Editor/BuildProcessors/PatchScriptingAssemblyList.cs b/Editor/BuildProcessors/PatchScriptingAssemblyList.cs index 8a13b11..2d49543 100644 --- a/Editor/BuildProcessors/PatchScriptingAssemblyList.cs +++ b/Editor/BuildProcessors/PatchScriptingAssemblyList.cs @@ -125,6 +125,9 @@ namespace HybridCLR.Editor.BuildProcessors } private void AddHotFixAssembliesToBinFile(string path) { +#if UNITY_STANDALONE_OSX + path = Path.GetDirectoryName(path); +#endif if (AddHotFixAssembliesToGlobalgamemanagers(path)) { return;