]> git.wh0rd.org - chrome-ext/waterfall-buildbot-clicker.git/blob - pngcrush.sh
initial code
[chrome-ext/waterfall-buildbot-clicker.git] / pngcrush.sh
1 #!/bin/sh -xe
2 # Copyright (c) 2013 The Chromium OS Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file.
5
6 pngcrush -e .png.new *.png
7 for png in *.png.new ; do
8 mv ${png} ${png%.new}
9 done