You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by gu...@apache.org on 2019/01/18 16:47:26 UTC

[lucene-solr] branch master updated: SOLR-13145 fail faster and more clearly when Jekyll is not available for ref guide build

This is an automated email from the ASF dual-hosted git repository.

gus pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/lucene-solr.git


The following commit(s) were added to refs/heads/master by this push:
     new 68ed797  SOLR-13145 fail faster and more clearly when Jekyll is not available for ref guide build
68ed797 is described below

commit 68ed797c946c92b61e38284dd9d218d532027d9f
Author: Gus Heck <gu...@apache.org>
AuthorDate: Fri Jan 18 11:47:06 2019 -0500

    SOLR-13145 fail faster and more clearly when Jekyll is not available for ref guide build
---
 solr/solr-ref-guide/build.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/solr/solr-ref-guide/build.xml b/solr/solr-ref-guide/build.xml
index fb6a36a..1c24d88 100644
--- a/solr/solr-ref-guide/build.xml
+++ b/solr/solr-ref-guide/build.xml
@@ -296,7 +296,7 @@
   <target name="-build-site"
           depends="build-init,build-nav-data-files" >
     <echo>Running Jekyll...</echo>
-    <exec executable="jekyll" dir="${build.content.dir}">
+    <exec executable="jekyll" dir="${build.content.dir}" failonerror="true">
       <arg value="build"/>
     </exec>
   </target>