Skip to content

Commit ba10785

Browse files
committed
Minor fixes...
1 parent 4ba3b40 commit ba10785

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

External/Plugins/SourceControl/Sources/Git/TortoiseProc.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ static private string GetTortoiseProc()
2929
{
3030
string cmd = PluginMain.SCSettings.TortoiseGITProcPath;
3131
if (cmd != null && File.Exists(cmd)) return cmd;
32-
if (String.IsNullOrEmpty(cmd)) cmd = "TortoiseProc.exe";
32+
if (String.IsNullOrEmpty(cmd)) cmd = "TortoiseGitProc.exe";
3333
return ResolveTortoiseProcPath(cmd);
3434
}
3535

External/Plugins/SourceControl/Sources/Mercurial/TortoiseProc.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ static private string GetTortoiseProc()
3131
{
3232
string cmd = PluginMain.SCSettings.TortoiseHGProcPath;
3333
if (cmd != null && File.Exists(cmd)) return cmd;
34-
if (String.IsNullOrEmpty(cmd)) cmd = "hgtk";
34+
if (String.IsNullOrEmpty(cmd)) cmd = "thgw.exe";
3535
return ResolveTortoiseProcPath(cmd);
3636
}
3737

0 commit comments

Comments
 (0)