From ab642f73ff66a38c451754c046f0241758f6d5d3 Mon Sep 17 00:00:00 2001 From: Damien Pollet Date: Thu, 14 Nov 2019 17:59:27 +0100 Subject: [PATCH] Reduce verbosity --- .latexmkrc | 2 +- ci/install-texlive | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.latexmkrc b/.latexmkrc index bd13f60..396cda5 100644 --- a/.latexmkrc +++ b/.latexmkrc @@ -1,7 +1,7 @@ # -*- mode: perl; -*- $pdf_mode = 4; # luaLaTeX $postscript_mode = $dvi_mode = 0; -$lualatex = 'lualatex --synctex=8 --interaction nonstopmode --file-line-error --halt-on-error %O %S'; +$lualatex = 'lualatex --synctex=8 --interaction batchmode --file-line-error --halt-on-error %O %S'; # cleanup temporary files from listings.sty / tcolorbox.sty push @generated_exts, 'listing'; diff --git a/ci/install-texlive b/ci/install-texlive index b2a6bc5..02f5fd1 100755 --- a/ci/install-texlive +++ b/ci/install-texlive @@ -46,7 +46,7 @@ function texlive-release() { function get-texlive-installer() { # download, checksum, extract - curl --location --remote-name-all "${TEXLIVE_REPOSITORY}/${TEXLIVE_TARBALL}"{,.sha512} + curl --silent --location --remote-name-all "${TEXLIVE_REPOSITORY}/${TEXLIVE_TARBALL}"{,.sha512} shasum --check "${TEXLIVE_TARBALL}.sha512" tar --extract --gzip --file "${TEXLIVE_TARBALL}" } @@ -82,7 +82,7 @@ EOF function install-texlive() { [[ $TRAVIS = true ]] || die "Should only run on Travis" - echo "Installing TeXlive..." + echo "Downloading minimal TeXlive..." echo " release $TEXLIVE_RELEASE" echo " from $TEXLIVE_REPOSITORY"