whitespace change due to scalariform kicking in

This commit is contained in:
Eugene Yokota 2014-07-10 17:46:41 -04:00
parent e1c2c435d1
commit efb68cf6bf
2 changed files with 7 additions and 7 deletions

View File

@ -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,

View File

@ -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