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
conffiles
sbt Debian:package-bin generates DEBIAN/conffiles file
sbt Debian:package-bin
sbt Debian:package-bin doen't generate DEBIAN/conffiles file
If you call via task debianConffilesFile.value directly file will be generated. It seems we should put same call for debianConffilesFile as
debianConffilesFile.value
sbt-native-packager/src/main/scala/com/typesafe/sbt/packager/debian/DebianPlugin.scala
Line 194 in 3b1adc4
The text was updated successfully, but these errors were encountered:
Thanks @sshobotov for your bug report. I think this got lost during the refactoring to the stage task.
Ideally we would refactor the stage task like this
stage := { // ... implementation }, stage := (stage dependsOn debianConffiles).value, stage := (stage dependsOn debianChangelog).value, stage := (stage dependsOn debianConffilesFile).value
Would you like to make a pull request for this? A regression test would also be nice for this :)
Sorry, something went wrong.
FIX #984 Debian packaging depends on debianControlFile and debianConf…
067697a
…filesFile
362392a
No branches or pull requests
Expected behaviour
sbt Debian:package-bin
generates DEBIAN/conffiles fileActual behaviour
sbt Debian:package-bin
doen't generate DEBIAN/conffiles fileInformation
Hint
If you call via task
debianConffilesFile.value
directly file will be generated. It seems we should put same call for debianConffilesFile assbt-native-packager/src/main/scala/com/typesafe/sbt/packager/debian/DebianPlugin.scala
Line 194 in 3b1adc4
The text was updated successfully, but these errors were encountered: