diff options
author | Jay Freeman (saurik) <saurik@saurik.com> | 2011-03-07 04:53:13 -0800 |
---|---|---|
committer | Jay Freeman (saurik) <saurik@saurik.com> | 2011-03-08 01:50:03 -0800 |
commit | d7c5a79d74058819f3fd37e5d16af52f30ce3dee (patch) | |
tree | e514b817febbd0eb627fdfb39c51ff38a62dbe2d /pngcrush.sh | |
parent | 5c624298a1145bdcd7e279642f9155ab114b94c2 (diff) |
Allow for parallel pngcrush.sh.
Diffstat (limited to 'pngcrush.sh')
-rwxr-xr-x | pngcrush.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pngcrush.sh b/pngcrush.sh index d74845a..0598451 100755 --- a/pngcrush.sh +++ b/pngcrush.sh @@ -5,8 +5,8 @@ out=$2 steps=() -src=_.png -dst=__.png +src=${out}.src.png +dst=${out}.dst.png copy=("${src}" "${dst}") |