aboutsummaryrefslogtreecommitdiff
path: root/stage2
diff options
context:
space:
mode:
authorChristopher Vogt <oss.nsp@cvogt.org>2017-06-15 23:47:20 -0400
committerChristopher Vogt <oss.nsp@cvogt.org>2017-06-15 23:51:21 -0400
commit96e471f914803f00dc646ebb05de24ede79227a4 (patch)
tree6bfcb212390cc915ce16ca45bb0154ca470c8264 /stage2
parentc8e56f1d45a31d9653fb69829cfac832143526c6 (diff)
downloadcbt-96e471f914803f00dc646ebb05de24ede79227a4.tar.gz
cbt-96e471f914803f00dc646ebb05de24ede79227a4.tar.bz2
cbt-96e471f914803f00dc646ebb05de24ede79227a4.zip
minor fix to error messages
Diffstat (limited to 'stage2')
-rw-r--r--stage2/DirectoryDependency.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/stage2/DirectoryDependency.scala b/stage2/DirectoryDependency.scala
index f2b5557..9a50be4 100644
--- a/stage2/DirectoryDependency.scala
+++ b/stage2/DirectoryDependency.scala
@@ -121,7 +121,7 @@ object DirectoryDependency {
build.asInstanceOf[Dependency]
} catch {
case e: ClassCastException =>
- throw new RuntimeException( "Your class " ++ lib.buildClassName ++ " needs to extend class BaseBuild in $buildFile", e )
+ throw new RuntimeException( "Your class " ++ lib.buildClassName ++ s" needs to extend class BaseBuild in $buildFile", e )
}
} )( context.logger, context.transientCache, context.classLoaderCache )
}