Skip to content
This repository has been archived by the owner on Jan 31, 2024. It is now read-only.

Commit

Permalink
[build] place the plugin contents under the kibana directory
Browse files Browse the repository at this point in the history
  • Loading branch information
spalger committed Oct 21, 2016
1 parent 4a8ccce commit 0a0f5fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tasks/build/build_action.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ module.exports = function (plugin) {
vfs
.src(files, { base: plugin.root })
.pipe(rename(function nestFileInDir(path) {
path.dirname = join(buildId, path.dirname);
path.dirname = join('kibana', plugin.id, path.dirname);
}))
.pipe(zip(`${buildId}.zip`))
.pipe(vfs.dest(join(plugin.root, 'build')));
Expand Down

0 comments on commit 0a0f5fe

Please sign in to comment.