aboutsummaryrefslogtreecommitdiff
path: root/stage2/Lib.scala
diff options
context:
space:
mode:
authorJan Christopher Vogt <oss.nsp@cvogt.org>2017-02-19 19:14:48 +0800
committerGitHub <noreply@github.com>2017-02-19 19:14:48 +0800
commit48f5f394798795e682a3acaa197d47ccf6bcde61 (patch)
tree81cd8b9085b39d1ff1fec60b0261e592208503a7 /stage2/Lib.scala
parentcf1cf8678e7ad5366c9ac40451cfa9353bd8b7f3 (diff)
parent2f2035682a942814a4a3e34dc4e61c34d00c1fa7 (diff)
downloadcbt-48f5f394798795e682a3acaa197d47ccf6bcde61.tar.gz
cbt-48f5f394798795e682a3acaa197d47ccf6bcde61.tar.bz2
cbt-48f5f394798795e682a3acaa197d47ccf6bcde61.zip
Merge pull request #349 from cvogt/chris3
various minor changes
Diffstat (limited to 'stage2/Lib.scala')
-rw-r--r--stage2/Lib.scala6
1 files changed, 3 insertions, 3 deletions
diff --git a/stage2/Lib.scala b/stage2/Lib.scala
index 9e1f824..7adb33e 100644
--- a/stage2/Lib.scala
+++ b/stage2/Lib.scala
@@ -47,9 +47,9 @@ final class Lib(val logger: Logger) extends Stage1Lib(logger){
|| directory == (context.cbtHome ++ "/libraries/eval")
|| directory == (context.cbtHome ++ "/plugins/scalatest")
)
- new cbt.BasicBuild( context.copy( workingDirectory = start ) ) with BuildBuildWithoutEssentials
+ new cbt.ConcreteBuildBuildWithoutEssentials( context.copy( workingDirectory = start ) )
else
- new cbt.BasicBuild( context.copy( workingDirectory = start ) ) with BuildBuild
+ new cbt.ConcreteBuildBuild( context.copy( workingDirectory = start ) )
} catch {
case e:ClassNotFoundException if e.getMessage == buildClassName =>
throw new Exception(s"no class ${buildClassName} found in " ++ start.string)
@@ -139,7 +139,7 @@ final class Lib(val logger: Logger) extends Stage1Lib(logger){
(
(
if( thisTasks.nonEmpty ){
- s"""Methods provided by Build ${show}
+ s"""Methods provided by ${show}
${thisTasks.mkString(" ")}