On running "sbt debian:packageBin" command, the fakeroot program fails since it tries to look for the fat jar (assembly) in /target dir instead of /target/scala-2.11/ directory.
So, is there a setting to specify the source directory for debian packaging using sbt Debian plugin?
SBT version: 0.13.11 Added below in plugins.sbt: addSbtPlugin("com.typesafe.sbt" % "sbt-native-packager" % "1.3.4")
In build.sbt, have added below: lazy val root = (project in file(".")). enablePlugins(DebianPlugin)
build.sbt
– Muki