File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -122,10 +122,11 @@ analyzeWithFicusMain rootDir apiOpts revision strategies filters snippetScanRete
122122 logDebugWithTime " Preparing Ficus analysis configuration..."
123123 ficusResults <- runFicus maybeDebugDir ficusConfig
124124 logDebugWithTime " runFicus completed, processing results..."
125- case snippetScanResults ficusResults of
126- Just results ->
127- logInfo $ pretty (formatFicusScanSummary results)
128- Nothing -> logInfo " Ficus analysis completed but no fingerprint findings were found"
125+ when (FicusStrategySnippetScan `elem` strategies) $
126+ case snippetScanResults ficusResults of
127+ Just results ->
128+ logInfo $ pretty (formatFicusScanSummary results)
129+ Nothing -> logInfo " Ficus analysis completed but no fingerprint findings were found"
129130 pure ficusResults
130131 where
131132 ficusConfig =
You can’t perform that action at this time.
0 commit comments