Skip to content

Commit 4db6287

Browse files
committed
fix(askalono): Crawln all files instead of just license-like ones
Also see the hint at [1]. [1]: jpeddicord/askalono#56 (comment) Signed-off-by: Sebastian Schuberth <[email protected]>
1 parent 7bdac39 commit 4db6287

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plugins/scanners/askalono/src/main/kotlin/Askalono.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ class Askalono(
131131
override fun runScanner(path: File, context: ScanContext): String {
132132
val process = AskalonoCommand.run(
133133
"--format", "json",
134-
"crawl", path.absolutePath
134+
"crawl", "--glob=*", path.absolutePath
135135
)
136136

137137
return with(process) {

0 commit comments

Comments
 (0)