You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
237 B
Bash

function generate {
SIZE="$1"
inkscape --export-width=$SIZE --export-height=$SIZE --export-png=../../public/images/logo-$SIZE.png lines.svg
}
mkdir -p ../../public/images
generate 256
generate 128
generate 64
generate 32
generate 16