Skip to content

Commit

Permalink
typo fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
pfn committed Apr 18, 2016
1 parent 0678762 commit 927fb34
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/scala/plugin.scala
Expand Up @@ -28,7 +28,7 @@ object SimpleServerPlugin extends AutoPlugin {

val updateCheck = TaskKey[Unit]("update-check", "Check for a new version of the plugin")
val serverSetup = AttributeKey[ServerData]("sbt-server-setup", "internal server data")
val serverResult = AttributeKey[ServerCommand[_]]("sbt-server-result", "internal current command server data")
val serverResult = AttributeKey[ServerCommand[_]]("sbt-server-result", "internal current command data")

override def trigger = allRequirements
override def requires = plugins.JvmPlugin
Expand All @@ -37,8 +37,8 @@ object SimpleServerPlugin extends AutoPlugin {
val FailedShellCommand = ShellCommand + "-failed"

override def buildSettings = Seq(
commands ++= Seq(serverAndShell, failedServerAndShell),
updateCheck := {
commands ++= Seq(serverAndShell, failedServerAndShell),
updateCheck := {
val log = Keys.streams.value.log
UpdateChecker("pfn", "sbt-plugins", "sbt-simple-server") {
case Left(t) =>
Expand Down

0 comments on commit 927fb34

Please sign in to comment.