Slightly better help message

This commit is contained in:
Alexandre Archambault 2015-11-23 23:18:07 +01:00
parent 700bf84296
commit a0efbc539f
1 changed files with 3 additions and 2 deletions

View File

@ -53,8 +53,6 @@ case class CacheOptions(
cache: String = CacheOptions.default
)
@AppName("Coursier")
@ProgName("coursier")
sealed trait CoursierCommand extends Command
case class Fetch(
@ -413,5 +411,8 @@ case class BaseCommand(
}
object Coursier extends CommandAppOfWithBase[BaseCommand, CoursierCommand] {
override def appName = "Coursier"
override def progName = "coursier"
private[coursier] var baseCp = Seq.empty[String]
}