1
0
This commit is contained in:
Jeff Lance 2024-08-02 16:33:15 +02:00
parent 341d92aeb7
commit 7101175810
3 changed files with 6 additions and 6 deletions

@ -1,10 +1,10 @@
{{ $email := promptStringOnce "What is your main git email address " "" }}
{{ $signinkey := promptStringOnce "What is your git signing key " "" }}
{{ $latex := promptBoolOnce "Do i install latex files " false }}
{{ $email := promptStringOnce . "email" "What is your main git email address " }}
{{ $signinkey := promptStringOnce . "signingkey" "What is your git signing key " }}
{{ $latex := promptBoolOnce . "hasLatex" "Do i install latex files " }}
[git]
autoCommit = true
autoPush = true
[data]
email = {{ $email | quote }}
signinkey = {{ $signinkey | quote }}
latex = {{ $latex }}
hasLatex = {{ $hasLatex }}

@ -65,7 +65,7 @@
url = "https://github.com/zimfw/zimfw/releases/latest/download/zimfw.zsh"
refreshPeriod = "168h"
{{- if ne .latex false }}
{{- if ne .hasLatex false }}
["texmf/tex/latex/latex-homework"]
type = "git-repo"
url = "https://git.jefflance.me/jeff/latex-homework.git"

@ -16,7 +16,7 @@ TEXMFDIR=${HOME}/texmf/tex/latex
{{- if (ne .latex false) }}
{{- if (ne .hasLatex false) }}
log "Begin LaTeX repo initialization"
texhash "${TEXMFDIR}"