Use open -R for opening explorer on MacOS

This commit is contained in:
Joseph HENRY 2024-11-07 12:47:24 +01:00
parent f88c466562
commit ad25aa7b52

View file

@ -99,7 +99,7 @@ class OpenTaskPath(LauncherAction):
if platform_name == "windows":
args = ["start", path]
elif platform_name == "darwin":
args = ["open", "-na", path]
args = ["open", "-R", path]
elif platform_name == "linux":
args = ["xdg-open", path]
else: