Fix thread synchroization issue in storePluginLanguageTranslations

This commit is contained in:
Martin Hickey 2016-06-24 11:43:06 +01:00
parent 80d8a2ce72
commit 856fb0200f

View file

@ -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);
}