From 9ed8b554f3275990767cb67f80ea88afecc09b1f Mon Sep 17 00:00:00 2001 From: Naoki Takezoe Date: Wed, 29 Nov 2017 10:17:48 +0900 Subject: [PATCH] Fix build.sbt --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 1ed757172..3019aed61 100644 --- a/build.sbt +++ b/build.sbt @@ -101,7 +101,7 @@ javaOptions in Jetty ++= Option(System.getenv().get("JREBEL")).toSeq.flatMap { p // Exclude a war file from published artifacts signedArtifacts := { - signedArtifacts.value.filterNot { case (_, file) => file.getName.endsWith(".war") || file.getName.endsWith(".war.asc" } + signedArtifacts.value.filterNot { case (_, file) => file.getName.endsWith(".war") || file.getName.endsWith(".war.asc") } } // Create executable war file