mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 17:28:26 -04:00
Fix thread synchroization issue in storePluginLanguageTranslations
This commit is contained in:
parent
80d8a2ce72
commit
856fb0200f
1 changed files with 1 additions and 3 deletions
|
@ -121,8 +121,6 @@ function getFileName(fullPath) {
|
|||
|
||||
// Added this function because 'mkdirp' does not add more than 2 subdirectories
|
||||
function createDirectoriesRecursively(fullDir) {
|
||||
process.exec('mkdir -p ' + fullDir, function (err,stdout,stderr) {
|
||||
if (err) throw err;
|
||||
});
|
||||
process.execSync('mkdir -p ' + fullDir);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue