You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by ma...@apache.org on 2019/08/26 14:22:36 UTC

[lucene-solr] 02/03: SOLR-13452: Fix OSX permission issue.

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

markrmiller pushed a commit to branch jira/SOLR-13452_gradle_5
in repository https://gitbox.apache.org/repos/asf/lucene-solr.git

commit b49af883d52491b532df7689f64a700668efd749
Author: markrmiller <mi...@apple.com>
AuthorDate: Mon Aug 26 09:21:53 2019 -0500

    SOLR-13452: Fix OSX permission issue.
---
 buildSrc/build-wdocker-test/Dockerfile | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/buildSrc/build-wdocker-test/Dockerfile b/buildSrc/build-wdocker-test/Dockerfile
index fa3eb5e..22b5ce6 100644
--- a/buildSrc/build-wdocker-test/Dockerfile
+++ b/buildSrc/build-wdocker-test/Dockerfile
@@ -37,6 +37,8 @@ RUN useradd -ms /bin/bash lucene
 # Define working directory.
 WORKDIR /home/lucene/project
 
+RUN mkdir -p /home/lucene/project
+
 RUN chown -R lucene:lucene /home/lucene
 
 USER lucene