We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eea9bb9 commit 529e45aCopy full SHA for 529e45a
tools/StaticAnalysis/Program.cs
@@ -48,15 +48,15 @@ public static void Main(string[] args)
48
};
49
50
var reportsDirectory = Directory.GetCurrentDirectory();
51
- var exceptionsDirectory = Path.Combine(Directory.GetCurrentDirectory(), "Exceptions");
52
bool logReportsDirectoryWarning = true;
53
if (args.Length > 1 && Directory.Exists(args[1]))
54
{
55
reportsDirectory = args[1];
56
logReportsDirectoryWarning = false;
57
}
58
59
- bool useExceptions = true;
+ var exceptionsDirectory = Path.Combine(reportsDirectory, "Exceptions");
+ bool useExceptions = true;
60
if (args.Length > 2)
61
62
bool.TryParse(args[2], out useExceptions);
0 commit comments