Skip to content

Commit

Permalink
Build: Fix packages distributions inclusion of empty directories
Browse files Browse the repository at this point in the history
This was accidentally broken in elastic#28760.
  • Loading branch information
rjernst committed Feb 22, 2018
1 parent 3c3d877 commit 0dad06c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion distribution/packages/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ Closure commonPackageConfig(String type) {
Closure copyEmptyDir = { path, u, g, mode ->
File file = new File(path)
into(file.parent) {
from "${packagingFiles}/${path}"
from "${packagingFiles}/${file.parent}"
include file.name
includeEmptyDirs true
createDirectoryEntry true
Expand Down

0 comments on commit 0dad06c

Please sign in to comment.