Skip to content

Commit

Permalink
#36
Browse files Browse the repository at this point in the history
  • Loading branch information
sboulema committed Aug 15, 2018
1 parent 5231d0e commit 590b6a9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion TSVN/Helpers/CommandHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public static void Revert(string filePath)
public static void ShowDifferences(string filePath)
{
if (string.IsNullOrEmpty(filePath)) return;
CommandHelper.StartProcess(FileHelper.GetTortoiseSvnProc(), $"/command:diff /path:\"{filePath}\"");
StartProcess(FileHelper.GetTortoiseSvnProc(), $"/command:diff /path:\"{filePath}\"");
}

public static List<string> GetPendingChanges()
Expand Down
2 changes: 2 additions & 0 deletions TSVN/TSVNToolWindowControl.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,8 @@ public void Update(List<string> pendingChanges, string solutionDir)

private void ProcessChange(TSVNTreeViewFolderItem root, string solutionDir, string change)
{
if (change.Length <= 8) return;

var path = change.Substring(8);
var pathParts = path.Split('\\');

Expand Down

0 comments on commit 590b6a9

Please sign in to comment.