fix: hotfix 1.0.6

This commit is contained in:
NGPixel
2017-08-10 21:00:18 -04:00
parent a6254364e9
commit a5c7389206
3 changed files with 8 additions and 5 deletions
+1 -1
View File
@@ -76,7 +76,7 @@ module.exports = Promise.mapSeries([
return Promise.map(langs, lang => {
console.info(colors.white(' ' + lang + '.json'))
let outputPath = path.join('./assets/js/i18n', lang + '.json')
return fs.readJsonAsync(path.join('./server/locales', lang + '.json'), 'utf8').then((content) => {
return fs.readJsonAsync(path.join('./server/locales', lang + 'browser.json'), 'utf8').then((content) => {
return fs.outputJsonAsync(outputPath, _.defaultsDeep(content, enContent))
}).catch(err => { // eslint-disable-line handle-callback-err
return fs.outputJsonAsync(outputPath, enContent)