mirror of https://github.com/sbt/sbt.git
rename Compile member to avoid conflict with pending change
This commit is contained in:
parent
050f9db501
commit
8c02f9f478
|
|
@ -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 <paths> [-cp <paths>] [-d <path>]"
|
||||
def CompileDetailed =
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in New Issue