Skip to content

Commit

Permalink
Suppress zopfli output
Browse files Browse the repository at this point in the history
  • Loading branch information
slusarz committed Nov 26, 2014
1 parent 4ceb85a commit a7249b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion maintainer-tools/horde-compress-pngs
Expand Up @@ -60,7 +60,7 @@ while ($it->valid()) {
system($args->pngout . ' ' . $it->key() . ' -y -q');

if (!empty($args->zopfli)) {
system($args->zopfli . ' -m ' . $it->key() . ' ' . $it->key() . '.out');
exec($args->zopfli . ' -m ' . $it->key() . ' ' . $it->key() . '.out');
unlink($it->key());
rename($it->key() . '.out', $it->key());
}
Expand Down

0 comments on commit a7249b1

Please sign in to comment.