From 24d9b9d6242e0808956c5e58fea46d1671f483e6 Mon Sep 17 00:00:00 2001 From: Carl Pearson Date: Sun, 17 Dec 2017 17:20:44 -0600 Subject: [PATCH] travis: fix --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 115c70f..0802f92 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,7 +2,7 @@ dist: trusty sudo: true install: - - wget https://github.com/gohugoio/hugo/releases/download/v0.31.1/hugo_0.31.1_Linux-64bit.deb -O hugo.deb + - wget -q https://github.com/gohugoio/hugo/releases/download/v0.31.1/hugo_0.31.1_Linux-64bit.deb -O hugo.deb - sudo dpkg -i hugo.deb script: @@ -19,6 +19,6 @@ after_success: | git -c user.name='cwpearson' -c user.email='carl.w.pearson@gmail.com' commit -m init # Make sure to make the output quiet, or else the API token will leak! # This works because the API key can replace your password. - git push -f -q https://cwpearson:$GITHUB_TOKEN@github.com/cwpearson/cwpearson.github.io master &2> /dev/null + git push -f https://cwpearson:$GITHUB_TOKEN@github.com/cwpearson/cwpearson.github.io master cd "$TRAVIS_BUILD_DIR" fi