diff --git a/main/CommandSupport.scala b/main/CommandSupport.scala index 1ff871e97..e543ed599 100644 --- a/main/CommandSupport.scala +++ b/main/CommandSupport.scala @@ -140,7 +140,7 @@ DiscoverSyntax + """ Classes with one or more of these annotations on the class or one of its non-private methods are included in the resulting list. """ - def Compile = "compile" + def CompileName = "compile" def CompileBrief = (CompileSyntax, "Incrementally compiles the provided sources.") def CompileSyntax = Compile + " -src [-cp ] [-d ]" def CompileDetailed = diff --git a/main/Main.scala b/main/Main.scala index bd744e138..be3de63a0 100644 --- a/main/Main.scala +++ b/main/Main.scala @@ -214,7 +214,7 @@ object Commands s }(s) } - def compile = Command.simple(Compile, CompileBrief, CompileDetailed ) { (in, s) => + def compile = Command.simple(CompileName, CompileBrief, CompileDetailed ) { (in, s) => val command = Parse.compile(in.arguments)(s.baseDir) try { val analysis = Build.compile(command, s.configuration)