Archived
1
0

Remove completed todo

This commit is contained in:
Jip J. Dekker 2016-04-05 17:35:12 +02:00
parent 490ee41a98
commit 9a3375c477

View File

@ -28,7 +28,6 @@ import (
// TODO: Add git version
// TODO: Support multiple authors
// TODO: Support categories
// TODO: Add working TOC
var bookTempl = `
\documentclass[a4paper,11pt]{article}
\usepackage[utf8]{inputenc}
@ -80,7 +79,6 @@ func MakeBook(path string, opts *settings.Settings) {
helpers.Check(err, "error executing book template")
f.Close()
// cmd := exec.Command("pdflatex", "-output-directory="+opts.OutputDir, texPath)
cmd := exec.Command("latexmk", "-silent", "-pdf", "-cd", texPath)
out, err := cmd.CombinedOutput()
if err != nil {