Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade level DB dependency and increase zip/gzip compression level #38

Merged
merged 2 commits into from Apr 3, 2020
Merged
Changes from 1 commit
Commits
File filter...
Filter file types
Jump to…
Jump to file
Failed to load files.

Always

Just for now

Next

Use the maximum compression settings

This reduces the size of the .tgz and .zip files by 3% each.
  • Loading branch information
fmarier committed Apr 1, 2020
commit 7218038babb39573aad3d1db81c56186f08911e1
@@ -200,7 +200,7 @@ const buildDataFiles = buffer => {
if (err) {
console.error(err)
} else {
exec('zip -r httpse.leveldb.zip httpse.leveldb && tar -czf httpse.leveldb.tgz httpse.leveldb', {
exec('zip -r -9 httpse.leveldb.zip httpse.leveldb && GZIP=-9 tar -czf httpse.leveldb.tgz httpse.leveldb', {
cwd: 'out'
}, (err) => {
if (err) {
ProTip! Use n and p to navigate between commits in a pull request.
You can’t perform that action at this time.