Skip to content

Commit

Permalink
Fix akka series env var name
Browse files Browse the repository at this point in the history
  • Loading branch information
2m committed May 19, 2017
1 parent c34e659 commit c10e8f7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ scala:
- "2.12.2"

env:
- akka.series=2.4
- akka.series=2.5
- AKKA_SERIES=2.4
- AKKA_SERIES=2.5

jdk:
- oraclejdk8
Expand Down
2 changes: 1 addition & 1 deletion project/Common.scala
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import com.typesafe.sbt.SbtScalariform.ScalariformKeys

object Common extends AutoPlugin {

val AkkaVersion = sys.env.get("akka.series") match {
val AkkaVersion = sys.env.get("AKKA_SERIES") match {
case Some("2.5") => "2.5.1"
case _ => "2.4.18"
}
Expand Down

0 comments on commit c10e8f7

Please sign in to comment.