aboutsummaryrefslogtreecommitdiff
path: root/stage1/Stage1Lib.scala
diff options
context:
space:
mode:
authorJan Christopher Vogt <oss.nsp@cvogt.org>2016-04-07 00:37:20 -0400
committerJan Christopher Vogt <oss.nsp@cvogt.org>2016-04-07 00:37:20 -0400
commit0ef27a7d8cabd0dfe4009b09481566d3d02a76c6 (patch)
tree43f0cbea4fa66414f59763b589d029fd43cb7e6b /stage1/Stage1Lib.scala
parent2d1a51d64aaca9ad00057a5bb822a50158b67429 (diff)
parentce8bab3856ec8755fb3b99be324f090770ddfe1f (diff)
downloadcbt-0ef27a7d8cabd0dfe4009b09481566d3d02a76c6.tar.gz
cbt-0ef27a7d8cabd0dfe4009b09481566d3d02a76c6.tar.bz2
cbt-0ef27a7d8cabd0dfe4009b09481566d3d02a76c6.zip
Merge pull request #102 from cvogt/chris
More classloading related fixes
Diffstat (limited to 'stage1/Stage1Lib.scala')
-rw-r--r--stage1/Stage1Lib.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/stage1/Stage1Lib.scala b/stage1/Stage1Lib.scala
index da9f8dd..7a2f8db 100644
--- a/stage1/Stage1Lib.scala
+++ b/stage1/Stage1Lib.scala
@@ -31,7 +31,7 @@ object CatchTrappedExitCode{
}
}
-case class Context( cwd: File, args: Seq[String], logger: Logger, cbtHasChanged: Boolean, classLoaderCache: ClassLoaderCache )
+case class Context( projectDirectory: File, cwd: File, args: Seq[String], logger: Logger, cbtHasChanged: Boolean, classLoaderCache: ClassLoaderCache )
class BaseLib{
def realpath(name: File) = new File(Paths.get(name.getAbsolutePath).normalize.toString)