Skip to content

Commit

Permalink
[build] Remove empty optimize directory (elastic#111393)
Browse files Browse the repository at this point in the history
This folder is no longer used.
  • Loading branch information
jbudz authored and chrisronline committed Sep 8, 2021
1 parent 3e67980 commit 791e26a
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/dev/build/tasks/create_empty_dirs_and_files_task.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,6 @@ export const CreateEmptyDirsAndFiles: Task = {
description: 'Creating some empty directories and files to prevent file-permission issues',

async run(config, log, build) {
await Promise.all([
mkdirp(build.resolvePath('plugins')),
mkdirp(build.resolvePath('data/optimize')),
]);
await Promise.all([mkdirp(build.resolvePath('plugins')), mkdirp(build.resolvePath('data'))]);
},
};

0 comments on commit 791e26a

Please sign in to comment.