Skip to content

Commit cd889f1

Browse files
committed
ETCM-165: Fix universal archive name.
1 parent 407926e commit cd889f1

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

build.sbt

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,10 @@ lazy val node = {
132132
.settings(
133133
libraryDependencies ++= dep
134134
)
135-
.settings(executableScriptName := name.value)
135+
.settings(
136+
executableScriptName := "mantis",
137+
packageName in Universal := s"mantis-${version.value}"
138+
)
136139
.settings(
137140
inConfig(Integration)(
138141
Defaults.testSettings
@@ -156,7 +159,6 @@ lazy val node = {
156159

157160
// Packaging
158161
mainClass in Compile := Some("io.iohk.ethereum.App"),
159-
executableScriptName := name.value,
160162
discoveredMainClasses in Compile := Seq(),
161163
// Requires the 'ant-javafx.jar' that comes with Oracle JDK
162164
// Enables creating an executable with the configuration files, has to be run on the OS corresponding to the desired version

0 commit comments

Comments
 (0)