DEV: No need to carry two brotli implementations around

old version of brotli binary is long gone, require brotli 1.0.0 and up
This commit is contained in:
Sam Saffron 2019-04-11 16:53:13 +10:00
parent a20f58554b
commit 84f12ac3f7
1 changed files with 2 additions and 13 deletions

View File

@ -116,19 +116,8 @@ def gzip(path)
end
# different brotli versions use different parameters
ver_out, _ver_err, ver_status = Open3.capture3('brotli --version')
if !ver_status.success?
# old versions of brotli don't respond to --version
def brotli_command(path)
"brotli --quality 11 --input #{path} --output #{path}.br"
end
elsif ver_out >= "brotli 1.0.0"
def brotli_command(path)
def brotli_command(path)
"brotli -f --quality=11 #{path} --output=#{path}.br"
end
else
# not sure what to do here, not expecting this
raise "cannot determine brotli version"
end
def brotli(path)