From d033651510ac078c306a976089d5de25658d04e6 Mon Sep 17 00:00:00 2001 From: HuYufei Date: Tue, 9 Jan 2024 11:07:02 +0800 Subject: [PATCH] =?UTF-8?q?fix=EF=BC=9A=20=E4=BF=AE=E5=A4=8DWindows?= =?UTF-8?q?=E5=B9=B3=E5=8F=B0=E5=BC=80=E5=90=AF=E8=B7=AF=E5=BE=84=E7=9A=84?= =?UTF-8?q?=E6=8A=A5=E9=94=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Editor/BuildTool/AppBuilder.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Editor/BuildTool/AppBuilder.cs b/Editor/BuildTool/AppBuilder.cs index b58e3fa..aca0f4c 100644 --- a/Editor/BuildTool/AppBuilder.cs +++ b/Editor/BuildTool/AppBuilder.cs @@ -340,8 +340,9 @@ namespace Guru.Editor #if UNITY_EDITOR_OSX EditorUtility.RevealInFinder(path); #else - Application.Open($"file://{path}"); + Application.OpenURL($"file://{path}"); #endif + } #endregion