diff --git a/.create_svg.sh b/.create_svg.sh new file mode 100755 index 0000000..bef5fa4 --- /dev/null +++ b/.create_svg.sh @@ -0,0 +1,6 @@ +#!/bin/bash +for f in *.svg +do + inkscape -z -e "export/$f.png" \ + "$f" +done diff --git a/.gitattributes b/.gitattributes index 42c2f81..58421f6 100644 --- a/.gitattributes +++ b/.gitattributes @@ -4,3 +4,5 @@ c3woc-schuerze_bestickt.pdf filter=lfs diff=lfs merge=lfs -text *.jpg filter=lfs diff=lfs merge=lfs -text *.png filter=lfs diff=lfs merge=lfs -text *.icc filter=lfs diff=lfs merge=lfs -text +c3woc-podcastlogo.svg.png filter=lfs diff=lfs merge=lfs -text +export/ filter=lfs diff=lfs merge=lfs -text diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..03e163d --- /dev/null +++ b/Makefile @@ -0,0 +1,4 @@ +#!/bin/bash +all: + ./.create_svg.sh +