diff --git a/.travis.yml b/.travis.yml index bcfa3e7..57d7b5c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,8 +2,10 @@ before_install: - sudo apt-get update && sudo apt-get install --no-install-recommends texlive-fonts-recommended texlive-latex-extra texlive-fonts-extra texlive-latex-recommended dvipng latex-xcolor texlive-full + script: -- make +- chmod +x build.sh +- ./build.sh deploy: provider: releases api_key: diff --git a/Makefile b/Makefile index fc14420..90597d3 100644 --- a/Makefile +++ b/Makefile @@ -14,10 +14,10 @@ all: $(REPORT) $(REPORT): $(DEPS) mkdir _build - $(LATEX) $< 2> errors.txt - $(LATEX) $< 2> errors.txt + $(LATEX) $< + $(LATEX) $< echo $(basename $<) - $(LATEX) $< 2> errors.txt + $(LATEX) $< .PHONY: clean diff --git a/build.sh b/build.sh new file mode 100644 index 0000000..dfc74ce --- /dev/null +++ b/build.sh @@ -0,0 +1,4 @@ +!#/bin/bash +make + +exit 0