Skip to content

Commit

Permalink
Merge pull request #488 from pelias/fix-bunzip
Browse files Browse the repository at this point in the history
fix(download): Use correct `bunzip2`
  • Loading branch information
orangejulius authored Mar 9, 2020
2 parents 05261e3 + 0c0e607 commit a51e467
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/download_sqlite_all.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ function download(callback) {
if (commandExistsSync('lbzip2')) {
extract = 'lbzip2';
} else {
extract = 'bunzip';
extract = 'bunzip2';
}
} else if (/\.db\.tar\.bz2$/.test(sqlite.name_compressed)) {
// Check if we have lbzip2 installed
Expand Down

0 comments on commit a51e467

Please sign in to comment.