view pidgin/pixmaps/art-tools/clean-svg-definitions.sh @ 29181:bcea7c92d3f1

Oops, don't break things for successfully receiving of a file. Refs #6523.
author Elliott Sales de Andrade <qulogic@pidgin.im>
date Mon, 14 Dec 2009 06:10:28 +0000
parents 209da0d52824
children
line wrap: on
line source

#!/bin/bash

for f in `ls *.svg`
do
  echo "Processing $f file..."
  inkscape --vacuum-defs $f
done