summaryrefslogtreecommitdiff
path: root/extensions/WikiEditor/modules/images/toolbar/png24/generate.sh
blob: ca14ee68fcf9f6a598b1a33cf7a56ad4209b7d65 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#! /bin/bash

# Compresses all PNGs in the current directory and puts the compressed
# version in the parent directory
#
# Requires pngcrush

for f in *.png
do
	pngcrush $f ../$f
done