pdfeisvogelkoma-scriptlatexlatex-templatemarkdownmarkdown-to-pdfpandocpandoc-templatepdf-generationtex
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
578 B
16 lines
578 B
#!/bin/bash
|
|
|
|
rm -rf "dist"
|
|
mkdir "dist"
|
|
|
|
cp "eisvogel.tex" "eisvogel.latex"
|
|
|
|
# create .zip files
|
|
zip -r -X --exclude="*.DS_Store*" "dist/Eisvogel-${1}.zip" "examples" "eisvogel.latex" "icon.png" "LICENSE" "README.md" "CHANGELOG.md"
|
|
cp "dist/Eisvogel-${1}.zip" "dist/Eisvogel.zip"
|
|
|
|
# create .tar.gz files
|
|
tar --exclude="*.DS_Store*" --include="examples" --include="eisvogel.latex" --include="icon.png" --include="LICENSE" --include="README.md" --include="CHANGELOG.md" -zcvf "dist/Eisvogel-${1}.tar.gz" *
|
|
cp "dist/Eisvogel-${1}.tar.gz" "dist/Eisvogel.tar.gz"
|
|
|
|
rm "eisvogel.latex"
|