initial lfs
This commit is contained in:
parent
8bf34a9bae
commit
2945ac6e94
3 changed files with 12 additions and 0 deletions
6
.create_svg.sh
Executable file
6
.create_svg.sh
Executable file
|
@ -0,0 +1,6 @@
|
|||
#!/bin/bash
|
||||
for f in *.svg
|
||||
do
|
||||
inkscape -z -e "export/$f.png" \
|
||||
"$f"
|
||||
done
|
2
.gitattributes
vendored
2
.gitattributes
vendored
|
@ -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
|
||||
|
|
4
Makefile
Normal file
4
Makefile
Normal file
|
@ -0,0 +1,4 @@
|
|||
#!/bin/bash
|
||||
all:
|
||||
./.create_svg.sh
|
||||
|
Loading…
Reference in a new issue