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:45:18 UTC

[lucene-solr] branch branch_8x 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 branch_8x
in repository https://gitbox.apache.org/repos/asf/lucene-solr.git


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

commit f1998dcef203ffebdfeaae1452f6c6c75fb04190
Author: Gus Heck <gu...@apache.org>
AuthorDate: Fri Jan 18 11:44:25 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>