We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
dist errors out with 'missing file'
dist
dist fails with java.io.IOException: This archive contains unclosed entries., and creates a corrupt zip file
java.io.IOException: This archive contains unclosed entries.
plugins.sbt
addSbtPlugin("com.typesafe.sbt" % "sbt-native-packager" % "1.2.2")
build.sbt
enablePlugins(JavaAppPackaging) mappings in Universal in packageBin += file("nothing") -> "nothing"
The text was updated successfully, but these errors were encountered:
This is also something we should integrate in #1026
I guess at the moment there is no error handling at all.
Sorry, something went wrong.
Fixed by #1124. Since version 1.3.9 the dist task for the project above fails fast with a better error message:
1] Not found: /Users/jz/code/native-package-test/nothing (mapped to nothing)
Also improving the underlying exception handling: #1290
muuki88
No branches or pull requests
Expected behaviour
dist
errors out with 'missing file'Actual behaviour
dist
fails withjava.io.IOException: This archive contains unclosed entries.
, and creates a corrupt zip fileInformation
plugins.sbt
addSbtPlugin("com.typesafe.sbt" % "sbt-native-packager" % "1.2.2")
build.sbt
The text was updated successfully, but these errors were encountered: