We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f2b31c3 commit 0eecb43Copy full SHA for 0eecb43
src/main/kotlin/net/roxymc/slime/importer/cli/Main.kt
@@ -22,10 +22,12 @@ class Main : CliktCommand() {
22
.required()
23
private val source by option("-s", "--source")
24
.file(mustExist = true, canBeDir = true, mustBeReadable = true)
25
+ .convert { it.absoluteFile }
26
.help("The input file/dir path")
27
28
private val output by option("-o", "--output")
29
.file(canBeFile = false, canBeDir = false)
30
31
.help("The output file path")
32
33
private val worldTags by option()
0 commit comments