Skip to content

Commit

Permalink
chore(scripts): moved generate-png-icons.sh to scripts/
Browse files Browse the repository at this point in the history
  • Loading branch information
lidel committed May 24, 2017
1 parent 34fe31b commit d4e5d1e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions generate-png-icons.sh → scripts/generate-png-icons.sh
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#!/bin/bash

for svg in add-on/icons/*.svg; do
for svg in ../add-on/icons/*.svg; do
for size in 19 38 128; do
png=add-on/icons/png/$(basename -s .svg ${svg})_${size}.png
png=../add-on/icons/png/$(basename -s .svg ${svg})_${size}.png
inkscape -z -e $png -w $size -h $size $svg
optipng -o7 -i0 $png
done
Expand Down

0 comments on commit d4e5d1e

Please sign in to comment.