Better help messages

This commit is contained in:
Alexandre Archambault 2015-11-23 23:58:24 +01:00
parent 4b55618bdb
commit 8bb9521199
1 changed files with 2 additions and 3 deletions

View File

@ -276,7 +276,7 @@ case class Bootstrap(
downloadDir: String,
@ExtraName("f")
force: Boolean,
@HelpMessage(s"Internal use - prepend base classpath options to arguments")
@HelpMessage(s"Internal use - prepend base classpath options to arguments (like -B jar1 -B jar2 etc.)")
@ExtraName("b")
prependClasspath: Boolean,
@HelpMessage("Set environment variables in the generated launcher. No escaping is done. Value is simply put between quotes in the launcher preamble.")
@ -392,8 +392,7 @@ case class Bootstrap(
}
case class BaseCommand(
// FIXME Need a @NoHelp annotation in case-app to hide an option from help message
@HelpMessage("For internal use only - class path used to launch coursier")
@Hidden
@ExtraName("B")
baseCp: List[String]
) extends Command {