diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..c531d98 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +*.elc diff --git a/doc/themes/project-landing-page b/doc/themes/project-landing-page index 55a73ff..5da34f6 160000 --- a/doc/themes/project-landing-page +++ b/doc/themes/project-landing-page @@ -1 +1 @@ -Subproject commit 55a73ff9c1b7a674d8aa6ee20a52f8ce9f481882 +Subproject commit 5da34f691d936bb5e9ce8b5b898b74deca54eb23 diff --git a/genfiles.el b/genfiles.el index 3e64795..3ceb6a8 100644 --- a/genfiles.el +++ b/genfiles.el @@ -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))) diff --git a/installs.sh b/installs.sh index a16134d..59d5ddb 100755 --- a/installs.sh +++ b/installs.sh @@ -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:"