aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Vogt <oss.nsp@cvogt.org>2017-02-26 22:52:01 +0800
committerChristopher Vogt <oss.nsp@cvogt.org>2017-02-27 18:44:53 +0800
commitaf5361b7eaeff292f551848d51cc1e8b0a6851c6 (patch)
tree18a6e5eb01be68635edc26456afc1dd10ab9c5a7
parent3b24ef05f1f4eca750145ff509658029f40ecb2b (diff)
downloadcbt-af5361b7eaeff292f551848d51cc1e8b0a6851c6.tar.gz
cbt-af5361b7eaeff292f551848d51cc1e8b0a6851c6.tar.bz2
cbt-af5361b7eaeff292f551848d51cc1e8b0a6851c6.zip
`cbt help` like `git help` instead of `cbt usage`
-rw-r--r--stage2/BasicBuild.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/stage2/BasicBuild.scala b/stage2/BasicBuild.scala
index 8d72f9a..b8a6790 100644
--- a/stage2/BasicBuild.scala
+++ b/stage2/BasicBuild.scala
@@ -32,7 +32,7 @@ trait BaseBuild extends BuildInterface with DependencyImplementation with Trigge
s"You need to extend ${lib.buildBuildClassName} in: " + projectDirectory + "/" ++ lib.buildDirectoryName
)
- final def usage: String = lib.usage(this.getClass, show)
+ final def help: String = lib.usage(this.getClass, show)
final def taskNames: String = lib.taskNames(this.getClass).sorted.mkString("\n")