-
Notifications
You must be signed in to change notification settings - Fork 127
New issue
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
Regression of RPM directory management #197
Comments
Output from 3.1.0 rpm -qlp build/distributions/foo-1.0.0.noarch.rpm
/opt/test/foo
... Output from 3.2.0 rpm -qlp build/distributions/foo-1.0.0.noarch.rpm
/opt/test
/opt/test/foo
... |
I'm seeing the same thing with 3.4.0. Looks like addParentDirs doesn't have any effect anymore. |
Note that if you move addParentDirs out of the from closure and into the task itself, it actually works and correctly removes all directories from being managed by the rpm. But then you have to re-add every subdirectory you actually do care about. |
I'm having this same issue in 4.1.0. But don't really want to make it global to the task. Is this something that can be fixed? |
I found this behavior in 4.1.0 to change based on if I'm using |
I think this is related to #124 and #212. I've added a pull request to fix the issue. |
Fixed with the release of v4.3.0 today |
I don't think this is fixed entirely: #246 |
It appears that a commit between 3.1.0 and 3.2.0 broke the ability to use the workaround specified in issue #59. The test specified in this comment no longer works after gradle-ospackage-plugin version 3.2.0.
The text was updated successfully, but these errors were encountered: