Skip to content

Commit

Permalink
Use unzip in verbose mode
Browse files Browse the repository at this point in the history
  • Loading branch information
kelson42 committed Dec 22, 2024
1 parent 2cc1d04 commit 5eb2012
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion download-libzim.js
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ for (let url of urls) {
})
.then(() => {
const cmd = isWindows
? `unzip ${dlFile} -d ./download`
? `unzip -v ${dlFile} -d ./download`
: `tar --strip-components 1 -xf ${dlFile} -C ./download`;
console.log(`Running Extract:`, `[${cmd}]`);
return exec(cmd);
Expand Down

0 comments on commit 5eb2012

Please sign in to comment.