1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-11-06 09:19:22 +02:00

Removed need for build dir for Electron app

This commit is contained in:
Laurent Cozic
2017-11-04 12:32:26 +00:00
parent 6e4effdecf
commit ddf9f442e5
5 changed files with 24 additions and 6 deletions

View File

@@ -141,7 +141,7 @@ async function main() {
const rnJsonLocaleDir = rnDir + '/locales';
await execCommand('rsync -a "' + jsonLocalesDir + '/" "' + rnJsonLocaleDir + '"');
const electronJsonLocaleDir = rootDir + '/ElectronClient/build/locales';
const electronJsonLocaleDir = rootDir + '/ElectronClient/app/locales';
await execCommand('rsync -a "' + jsonLocalesDir + '/" "' + electronJsonLocaleDir + '"');
}