From 7a334d9ed9ff7426e78a88582207b47b370ec5de Mon Sep 17 00:00:00 2001 From: Ted Kremenek Date: Wed, 23 Jan 2013 21:22:14 +0000 Subject: [PATCH] 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 --- tools/scan-build/scan-build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.50.1