Skip to content

Commit

Permalink
Fix in path for CLI exe affecting LGTM running unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
Guy Acosta committed Apr 7, 2020
1 parent 2bb0c88 commit 451f109
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion UnitTest.Commands/Helper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ static public string GetPath(AppPath pathType)
#if DEBUG
result = Path.Combine(GetBaseAppPath(), "..", "..", "..", "..", "AppInspector.CLI", "bin", "debug", "netcoreapp3.1", "applicationinspector.cli.exe");
#else
result = Path.Combine(GetBaseAppPath(), "..", "..", "..", "..", "AppInspector".CLI", "bin", "release", "netcoreapp3.1", "applicationinspector.cli.exe");
result = Path.Combine(GetBaseAppPath(), "..", "..", "..", "..", "AppInspector.CLI", "bin", "release", "netcoreapp3.1", "applicationinspector.cli.exe");
#endif
break;
}
Expand Down

0 comments on commit 451f109

Please sign in to comment.