aboutsummaryrefslogtreecommitdiff
path: root/stage1/paths.scala
diff options
context:
space:
mode:
Diffstat (limited to 'stage1/paths.scala')
-rw-r--r--stage1/paths.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/stage1/paths.scala b/stage1/paths.scala
index 2006ae8..e8e3cc5 100644
--- a/stage1/paths.scala
+++ b/stage1/paths.scala
@@ -6,7 +6,7 @@ object paths{
val userHome: File = new File(Option(System.getProperty("user.home")).get)
val bootstrapScala: File = cbtHome ++ "/bootstrap_scala"
val nailgun: File = new File(Option(System.getenv("NAILGUN")).get)
- val stage1: File = new File(Option(System.getenv("STAGE1")).get)
+ val stage1: File = new File(NailgunLauncher.STAGE1)
val stage2: File = cbtHome ++ "/stage2"
private val target = Option(System.getenv("TARGET")).get.stripSuffix("/")
val stage1Target: File = stage1 ++ ("/" ++ target)