From 27dfd0fbc8d0752f5e59cd4b1acb25d8453bb5e2 Mon Sep 17 00:00:00 2001 From: Alan Orth Date: Thu, 8 Nov 2018 09:34:24 +0200 Subject: [PATCH] .travis.yml: Try to run hugo from blog root Now hugo builds fine, but I'm not sure where the blog directory is. --- .travis.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index e607b42d..9daa4eba 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,7 +7,9 @@ install: - cd $HOME/src/hugo - go install before_script: git clone https://github.com/alanorth/hugo-theme-bootstrap4-blog.git themes/hugo-theme-bootstrap4-blog -script: hugo +script: + - cd hugo-theme-bootstrap4-blog + - hugo sudo: false dist: trusty