From 2945ac6e944b624ce6604d98f501cb42e0905b46 Mon Sep 17 00:00:00 2001 From: Lilian Roller Date: Mon, 14 Oct 2019 09:58:11 +0200 Subject: [PATCH] initial lfs --- .create_svg.sh | 6 ++++++ .gitattributes | 2 ++ Makefile | 4 ++++ 3 files changed, 12 insertions(+) create mode 100755 .create_svg.sh create mode 100644 Makefile 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 +