Skip to content

Commit a20ede3

Browse files
committed
Fix lint
1 parent 055151a commit a20ede3

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

download-libzim.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,9 @@ for (let url of urls) {
7373
});
7474
})
7575
.then(() => {
76-
const cmd = isWindows ? `unzip ${dlFile} -d ./download` : `tar --strip-components 1 -xf ${dlFile} -C ./download`;
76+
const cmd = isWindows ?
77+
`unzip ${dlFile} -d ./download` :
78+
`tar --strip-components 1 -xf ${dlFile} -C ./download`;
7779
console.log(`Running Extract:`, `[${cmd}]`);
7880
return exec(cmd);
7981
})

0 commit comments

Comments
 (0)