9 lines
292 B
Makefile
9 lines
292 B
Makefile
build:
|
|
typst compile base.typ engels.pdf --font-path ./fonts
|
|
|
|
# Make sure all the git actions of pulling, adding all files, committing, and pushing are done in one command
|
|
push:
|
|
git pull
|
|
git add *
|
|
read -p "Commit message: " -r message && git commit -m "$message"
|
|
git push
|