aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakob Odersky <jakob@odersky.com>2018-05-09 01:55:36 -0700
committerJakob Odersky <jakob@odersky.com>2018-05-09 02:05:10 -0700
commit9080f0b9af8e7343d91a1c8035fe1b5a8d59b2e7 (patch)
treef2eabb484c70b652b2a62612c6bc101898ba98d9
parentf9533463cedcfee16177107932c64a444b269b85 (diff)
downloadscala-triad-9080f0b9af8e7343d91a1c8035fe1b5a8d59b2e7.tar.gz
scala-triad-9080f0b9af8e7343d91a1c8035fe1b5a8d59b2e7.tar.bz2
scala-triad-9080f0b9af8e7343d91a1c8035fe1b5a8d59b2e7.zip
Upgrade commando and set executable name
-rw-r--r--build.sbt3
1 files changed, 2 insertions, 1 deletions
diff --git a/build.sbt b/build.sbt
index c152f4b..fb199b5 100644
--- a/build.sbt
+++ b/build.sbt
@@ -52,7 +52,7 @@ lazy val common = crossProject(JVMPlatform, JSPlatform, NativePlatform)
scalaVersion := "2.11.12",
nativeLinkStubs := true,
libraryDependencies ++= Seq(
- "io.crashbox" %%% "commando" % "0.1.1"
+ "io.crashbox" %%% "commando" % "0.1.2"
),
sourceGenerators in Compile += Def.task {
import sys.process._
@@ -98,6 +98,7 @@ lazy val client = project
.settings(
scalaVersion := "2.11.12",
nativeMode := "debug",
+ name := "triad"
)
.dependsOn(commonNative)