]> git.wh0rd.org - chrome-ext/waterfall-buildbot-clicker.git/blame - pngcrush.sh
initial code
[chrome-ext/waterfall-buildbot-clicker.git] / pngcrush.sh
CommitLineData
55314fcf
MF
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
6pngcrush -e .png.new *.png
7for png in *.png.new ; do
8 mv ${png} ${png%.new}
9done