we need to fix permissions

This commit is contained in:
Sam 2016-06-07 17:42:12 +10:00
parent 935c9343e4
commit fe1ebee791

View file

@ -111,7 +111,8 @@ end
def brotli(path)
if ENV['COMPRESS_BROTLI']
STDERR.puts "brotli #{path}"
STDERR.puts `brotli --quality 11 --input #{path} --output #{path}.bl`
STDERR.puts `brotli --quality 11 --input #{path} --output #{path}.br`
STDERR.puts `chmod +r #{path}.br`
end
end