aboutsummaryrefslogtreecommitdiff
path: root/stage1/ClassPath.scala
diff options
context:
space:
mode:
Diffstat (limited to 'stage1/ClassPath.scala')
-rw-r--r--stage1/ClassPath.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/stage1/ClassPath.scala b/stage1/ClassPath.scala
index 66a1b44..96963e4 100644
--- a/stage1/ClassPath.scala
+++ b/stage1/ClassPath.scala
@@ -25,6 +25,6 @@ case class ClassPath(files: Seq[File]){
def string = strings.mkString( File.pathSeparator )
def strings = files.map{
f => f.string ++ ( if(f.isDirectory) "/" else "" )
- }
+ }.sorted
def toConsole = string
}