Skip to content

Commit e77aedd

Browse files
author
Charlie Barto
committed
made suggestions work better
1 parent a88ae79 commit e77aedd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

LibNimrod/idetools.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ public static string GetDirtyArgs(string action, string dirty_file, string file,
122122
{
123123
string fileRelitive = file.Substring(Path.GetDirectoryName(project).Length + 1);
124124
var projectDir = Path.GetDirectoryName(project);
125-
string rv = " --verbosity:0 --path:"+projectDir+" idetools --trackDirty:" + dirty_file + "," + fileRelitive + "," + line.ToString() + "," + col.ToString() + " --" + action + " " + Path.GetFileName(project);
125+
string rv = " --verbosity:0 --path:" + projectDir + " idetools --trackDirty:" + dirty_file + "," + fileRelitive + "," + line.ToString() + "," + col.ToString() + " --" + action + " " + fileRelitive;
126126
return rv;
127127
}
128128
public static string GetRawResults(string action, string file, int line, int col, string project)

0 commit comments

Comments
 (0)