mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 09:48:58 -04:00
Build task for creating os packages creates target
The target directory is created by the archives task, but it is not created by the ospackages task, so if you do not have a target directory and try to skip archives, the build will fail.
This commit is contained in:
parent
6b98215833
commit
3d546336b1
1 changed files with 2 additions and 0 deletions
|
@ -12,6 +12,8 @@ export default (grunt) => {
|
|||
const fpm = args => exec('fpm', args);
|
||||
|
||||
grunt.registerTask('_build:osPackages', function () {
|
||||
grunt.file.mkdir('target');
|
||||
|
||||
config.get('platforms')
|
||||
.filter(({ name }) => /linux-x(86|64)$/.test(name))
|
||||
.map(({ name, buildDir }) => {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue