aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar vantezzen <hello@vantezzen.io>2019-09-24 10:02:47 +0200
committerLibravatar vantezzen <hello@vantezzen.io>2019-09-24 10:02:47 +0200
commitb9181b185d362e2233d189ed942ca624881dd14c (patch)
tree347f5d11da9f027e7f0ca1eba8327483d7954419
parentImplement Skype link fix (diff)
parent#72 Fix dictionaries build step (diff)
downloadferdium-app-b9181b185d362e2233d189ed942ca624881dd14c.tar.gz
ferdium-app-b9181b185d362e2233d189ed942ca624881dd14c.tar.zst
ferdium-app-b9181b185d362e2233d189ed942ca624881dd14c.zip
Merge branch 'master' of https://github.com/getferdi/ferdi
-rw-r--r--gulpfile.babel.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/gulpfile.babel.js b/gulpfile.babel.js
index 06e995d07..c0400bdac 100644
--- a/gulpfile.babel.js
+++ b/gulpfile.babel.js
@@ -166,7 +166,7 @@ export function dictionaries(done) {
166 let packages = ''; 166 let packages = '';
167 Object.keys(SPELLCHECKER_LOCALES).forEach((key) => { packages = `${packages} hunspell-dict-${key}`; }); 167 Object.keys(SPELLCHECKER_LOCALES).forEach((key) => { packages = `${packages} hunspell-dict-${key}`; });
168 168
169 _shell(`npm install --prefix ${path.join(__dirname, 'temp')} ${packages}`, () => { 169 _shell(`npm install --prefix "${path.join(__dirname, 'temp')}" ${packages}`, () => {
170 moveSync( 170 moveSync(
171 path.join(__dirname, 'temp', 'node_modules'), 171 path.join(__dirname, 'temp', 'node_modules'),
172 path.join(__dirname, 'build', paths.dictionaries), 172 path.join(__dirname, 'build', paths.dictionaries),