@@ -11,15 +11,15 @@ import java.io.StringWriter
1111
1212object 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