flags/make_flags.sh

Tue, 28 Sep 2021 22:14:00 +0300

author
Teemu Piippo <teemu@hecknology.net>
date
Tue, 28 Sep 2021 22:14:00 +0300
changeset 143
7b62c52835a1
parent 6
73e448b2943d
permissions
-rwxr-xr-x

Fix memory corruption involving document tools.
I don't think that the metaobject-initialization had anything to do with this
but it is a lot simpler without it anyway.

#!/bin/bash
for flag in *.svg
do
	flag_png="${flag%.svg}.png"
	echo "$flag => $flag_png"
	inkscape -z -e ${flag_png} -w 64 $flag
done

mercurial