init
This commit is contained in:
commit
53e4e8ba94
4 changed files with 64 additions and 0 deletions
9
justfile
Normal file
9
justfile
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
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
|
||||
Loading…
Add table
Add a link
Reference in a new issue