diff options
author | Ted Kremenek <kremenek@apple.com> | 2013-01-23 21:22:14 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2013-01-23 21:22:14 +0000 |
commit | 7a334d9ed9ff7426e78a88582207b47b370ec5de (patch) | |
tree | 69b04fdf10d8b3873588f4645242d3bb39745a46 | |
parent | b33349e605a7373b067f7b96619e27c57c13932b (diff) |
Always process an index.html file if we have HTML output. Patch by Justin Bogner.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@173294 91177308-0d34-0410-b5e6-96231b3b80d8
-rwxr-xr-x | tools/scan-build/scan-build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/scan-build/scan-build b/tools/scan-build/scan-build index 5bff0d95b6..20b85a06d7 100755 --- a/tools/scan-build/scan-build +++ b/tools/scan-build/scan-build @@ -1563,7 +1563,7 @@ if (defined $OutputFormat) { Diag "Analysis run complete.\n"; Diag "Analysis results (plist files) deposited in '$HtmlDir'\n"; } - elsif ($OutputFormat =~ /html/) { + if ($OutputFormat =~ /html/) { # Postprocess the HTML directory. my $NumBugs = Postprocess($HtmlDir, $BaseDir, $AnalyzerStats); |