mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-10-31 13:03:20 -07:00
fix: can not open app dir on macOS
This commit is contained in:
parent
2934ad72d4
commit
e7921db339
1 changed files with 1 additions and 1 deletions
|
@ -53,7 +53,7 @@ namespace SourceGit.Native
|
|||
{
|
||||
if (Directory.Exists(path))
|
||||
{
|
||||
Process.Start("open", path);
|
||||
Process.Start("open", $"\"{path}\"");
|
||||
}
|
||||
else if (File.Exists(path))
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue