mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-12-24 20:57:19 -08: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))
|
if (Directory.Exists(path))
|
||||||
{
|
{
|
||||||
Process.Start("open", path);
|
Process.Start("open", $"\"{path}\"");
|
||||||
}
|
}
|
||||||
else if (File.Exists(path))
|
else if (File.Exists(path))
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue