aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--stage1/cbt.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/stage1/cbt.scala b/stage1/cbt.scala
index f88ef16..4caa085 100644
--- a/stage1/cbt.scala
+++ b/stage1/cbt.scala
@@ -25,7 +25,7 @@ object `package`{
)
new File( file.toString ++ s )
}
- def /(s: String): File = new File(file.getAbsolutePath + File.separator + s)
+ def /(s: String): File = new File( file, s )
def parent = lib.realpath(file ++ "/..")
def string = file.toString
}