Skip to content

Commit 5bf0c11

Browse files
committed
fix(askalono): Crawl in all files instead of just license-like [1] ones
Also see the hint at [2]. [1]: https://github.com/BurntSushi/ripgrep/blob/6dfaec03e830892e787686917509c17860456db1/crates/ignore/src/default_types.rs#L123-L149 [2]: jpeddicord/askalono#56 (comment) Signed-off-by: Sebastian Schuberth <[email protected]>
1 parent 7bdac39 commit 5bf0c11

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)