We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 055151a commit a20ede3Copy full SHA for a20ede3
download-libzim.js
@@ -73,7 +73,9 @@ for (let url of urls) {
73
});
74
})
75
.then(() => {
76
- const cmd = isWindows ? `unzip ${dlFile} -d ./download` : `tar --strip-components 1 -xf ${dlFile} -C ./download`;
+ const cmd = isWindows ?
77
+ `unzip ${dlFile} -d ./download` :
78
+ `tar --strip-components 1 -xf ${dlFile} -C ./download`;
79
console.log(`Running Extract:`, `[${cmd}]`);
80
return exec(cmd);
81
0 commit comments