Skip to content

Commit e7921db

Browse files
committed
fix: can not open app dir on macOS
1 parent 2934ad7 commit e7921db

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Native/MacOS.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ public void OpenInFileManager(string path, bool select)
5353
{
5454
if (Directory.Exists(path))
5555
{
56-
Process.Start("open", path);
56+
Process.Start("open", $"\"{path}\"");
5757
}
5858
else if (File.Exists(path))
5959
{

0 commit comments

Comments
 (0)