Skip to content

Commit

Permalink
Use setup-gradle@v4
Browse files Browse the repository at this point in the history
  • Loading branch information
d-gregorczyk committed Aug 9, 2024
1 parent 4f74e64 commit 113a534
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -13,11 +13,11 @@ import org.sdpi.asciidoc.github.IssueImport
import java.io.File
import kotlin.system.exitProcess

fun main(args: Array<String>) = ConvertAndVerifySupplement().main(
when (System.getenv().containsKey("CI")) {
true -> args.firstOrNull()?.split(" ") ?: listOf() // caution: blanks in quotes not covered here!
false -> args.toList()
}
fun main(args: Array<String>) = ConvertAndVerifySupplement().main(args
// when (System.getenv().containsKey("CI")) {
// true -> args.firstOrNull()?.split(" ") ?: listOf() // caution: blanks in quotes not covered here!
// false -> args.toList()
// }
)

class ConvertAndVerifySupplement : CliktCommand("convert-supplement") {

0 comments on commit 113a534

Please sign in to comment.