Skip to content

Commit

Permalink
Capitalize extractor
Browse files Browse the repository at this point in the history
  • Loading branch information
patriknw committed Oct 15, 2012
1 parent 0470bd6 commit 43acb90
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions project/AkkaBuild.scala
Original file line number Diff line number Diff line change
Expand Up @@ -443,9 +443,9 @@ object AkkaBuild extends Build {
// multinode.D= and multinode.X= makes it possible to pass arbitrary
// -D or -X arguments to the forked jvm, e.g.
// -Dmultinode.Djava.net.preferIPv4Stack=true -Dmultinode.Xmx512m -Dmultinode.XX:MaxPermSize=256M
val multinodeJvmArgs = "multinode\\.(D|X)(.*)".r
val MultinodeJvmArgs = "multinode\\.(D|X)(.*)".r
val akkaProperties = System.getProperties.propertyNames.asScala.toList.collect {
case multinodeJvmArgs(a, b) =>
case MultinodeJvmArgs(a, b) =>
val value = System.getProperty("multinode." + a + b)
"-" + a + b + (if (value == "") "" else "=" + value)
case key: String if key.startsWith("multinode.") => "-D" + key + "=" + System.getProperty(key)
Expand Down

0 comments on commit 43acb90

Please sign in to comment.