You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by ho...@apache.org on 2019/10/29 01:39:09 UTC

[lucene-solr] 01/06: Fix jekyll 'ant exec' args to be cross platform

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

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

commit f6625f2b6206ee9a9a3f9bebf9322733b53c4b46
Author: Chris Hostetter <ho...@apache.org>
AuthorDate: Mon Oct 28 15:11:27 2019 -0700

    Fix jekyll 'ant exec' args to be cross platform
---
 solr/solr-ref-guide/build.xml | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/solr/solr-ref-guide/build.xml b/solr/solr-ref-guide/build.xml
index 51a441a..628bd5a 100644
--- a/solr/solr-ref-guide/build.xml
+++ b/solr/solr-ref-guide/build.xml
@@ -267,7 +267,8 @@
           depends="build-init,build-nav-data-files" >
     <echo>Running Jekyll...</echo>
     <exec executable="jekyll" dir="${build.content.dir}" failonerror="true">
-      <arg value="build --verbose"/>
+      <arg value="build" />
+      <arg value="--verbose"/>
     </exec>
   </target>