forked from mirrors/org-cv
Fix build again
gitignore emacs bytecode with dir update to hugo of 2022-06 Update theme with fixes for new hugo version
This commit is contained in:
parent
f1fe584ad5
commit
c6805e1d92
4 changed files with 4 additions and 2 deletions
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
*.elc
|
2
doc/themes/project-landing-page
vendored
2
doc/themes/project-landing-page
vendored
|
@ -1 +1 @@
|
|||
Subproject commit 55a73ff9c1b7a674d8aa6ee20a52f8ce9f481882
|
||||
Subproject commit 5da34f691d936bb5e9ce8b5b898b74deca54eb23
|
|
@ -33,6 +33,7 @@
|
|||
(defun export-latex (backend file)
|
||||
(let ((outfile (export-with backend file ".tex"))
|
||||
(pdffile (concat cv-workdir file ".pdf")))
|
||||
(cd cv-workdir)
|
||||
(message (format "%s exists: %s" outfile (file-exists-p outfile)))
|
||||
(shell-command (format "xelatex --output-directory=%s %s" cv-workdir outfile) "*Messages*" "*Messages*")
|
||||
(message (format "%s exists: %s" pdffile (file-exists-p pdffile)))
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
wget https://github.com/gohugoio/hugo/releases/download/v0.39/hugo_0.39_Linux-64bit.deb
|
||||
wget https://github.com/gohugoio/hugo/releases/download/v0.100.2/hugo_0.100.2_Linux-64bit.deb
|
||||
dpkg -i hugo*.deb
|
||||
|
||||
echo "Installed Hugo:"
|
||||
|
|
Loading…
Reference in a new issue