Skip to content
This repository has been archived by the owner on May 25, 2022. It is now read-only.

Commit

Permalink
fix: empty default language to skip complex
Browse files Browse the repository at this point in the history
  • Loading branch information
phodal committed Mar 24, 2022
1 parent 76b5bc9 commit e3b84f8
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -16,7 +16,7 @@ class Runner : CliktCommand(help = "scan git to sql") {
private val path: String by option(help = "local path").default(".")
private val repoId: String by option(help = "repo id").default("0")
private val systemId: String by option(help = "system id").default("0")
private val language: String by option(help = "language").default("java")
private val language: String by option(help = "language").default("")
private val loc: String? by option(help = "scan loc")

override fun run() {
Expand Down

0 comments on commit e3b84f8

Please sign in to comment.