Skip to content

Commit 69bdabf

Browse files
committed
Reverted: bootstrap-header -> add-bootstrap-header
Signed-off-by: Marcin Kuszczak <1508798+aartiPl@users.noreply.github.com>
1 parent 8f547f0 commit 69bdabf

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/main/kotlin/io/github/kscripting/kscript/util/OptionsUtils.kt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@ import java.io.StringWriter
1111

1212
object OptionsUtils {
1313
fun createOptions(): Options {
14-
return Options().addOption(
15-
"i", "interactive", false, "Create interactive shell with dependencies as declared in script"
16-
).addOption("t", "text", false, "Enable stdin support API for more streamlined text processing")
14+
return Options()
15+
.addOption("i", "interactive", false, "Create interactive shell with dependencies as declared in script")
16+
.addOption("t", "text", false, "Enable stdin support API for more streamlined text processing")
1717
.addOption("e", "idea", false, "Open script in temporary Intellij session")
1818
.addOption("s", "silent", false, "Suppress status logging")
1919
.addOption("d", "development", false, "Logging of exception stack traces and additional log messages")
2020
.addOption("r", "report", false, "Prints script's deprecated features report")
2121
.addOption("p", "package", false, "Package script and dependencies into self-dependent binary")
22-
.addOption("b", "bootstrap-header", false, "Prepend bash header that installs kscript if necessary")
22+
.addOption("a", "add-bootstrap-header", false, "Prepend bash header that installs kscript if necessary")
2323
.addOption("h", "help", false, "Prints help information")
2424
.addOption("v", "version", false, "Prints version information")
2525
.addOption("c", "clear-cache", false, "Wipes out cached script jars and urls")

0 commit comments

Comments
 (0)