mirror of https://github.com/sbt/sbt.git
whitespace change due to scalariform kicking in
This commit is contained in:
parent
e1c2c435d1
commit
efb68cf6bf
|
|
@ -17,7 +17,7 @@ object Release extends Build {
|
|||
|
||||
// Add credentials if they exist.
|
||||
def lameCredentialSettings: Seq[Setting[_]] =
|
||||
if(CredentialsFile.exists) Seq(credentials in ThisBuild += Credentials(CredentialsFile))
|
||||
if (CredentialsFile.exists) Seq(credentials in ThisBuild += Credentials(CredentialsFile))
|
||||
else Nil
|
||||
def releaseSettings(nonRoots: => Seq[ProjectReference], launcher: TaskKey[File]): Seq[Setting[_]] = Seq(
|
||||
publishTo in ThisBuild <<= publishResolver,
|
||||
|
|
|
|||
|
|
@ -14,7 +14,7 @@ object Sbt extends Build {
|
|||
|
||||
// Aggregate task for 2.11
|
||||
private def lameAgregateTask(task: String): String =
|
||||
s"all control/$task collections/$task io/$task completion/$task"
|
||||
s"all control/$task collections/$task io/$task completion/$task"
|
||||
def buildSettings = Seq(
|
||||
organization := "org.scala-sbt",
|
||||
version := "0.13.6-SNAPSHOT",
|
||||
|
|
@ -57,15 +57,15 @@ object Sbt extends Build {
|
|||
},
|
||||
commands += Command.command("release-sbt-local") { state =>
|
||||
"publishLocal" ::
|
||||
"setupBuildScala211" ::
|
||||
lameAgregateTask("publishLocal") ::
|
||||
"reload" ::
|
||||
state
|
||||
"setupBuildScala211" ::
|
||||
lameAgregateTask("publishLocal") ::
|
||||
"reload" ::
|
||||
state
|
||||
},
|
||||
commands += Command.command("release-sbt") { state =>
|
||||
// TODO - Any sort of validation
|
||||
"checkCredentials" ::
|
||||
"publishSigned" ::
|
||||
"publishSigned" ::
|
||||
"publishLauncher" ::
|
||||
"release-libs-211" ::
|
||||
state
|
||||
|
|
|
|||
Loading…
Reference in New Issue