You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by nn...@apache.org on 2018/09/27 21:59:51 UTC

[geode] branch release/1.7.0 updated: Force inclusion of all ci/** files to work around exclude name collision (#2528)

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

nnag pushed a commit to branch release/1.7.0
in repository https://gitbox.apache.org/repos/asf/geode.git


The following commit(s) were added to refs/heads/release/1.7.0 by this push:
     new 48061cd  Force inclusion of all ci/** files to work around exclude name collision (#2528)
48061cd is described below

commit 48061cdcc293d42020b8695a5a23c4dd360550ff
Author: Sean Goller <se...@goller.net>
AuthorDate: Thu Sep 27 14:59:41 2018 -0700

    Force inclusion of all ci/** files to work around exclude name collision (#2528)
    
    src distribution excludes '**/out/**' which triggers on our concourse
    resource script entitled 'out'. This gets the script into the archive
    anyway
    
    Co-authored-by: Sean Goller <sg...@pivotal.io>
    Co-authored-by: Robert Houghton <rh...@pivotal.io>
---
 geode-assembly/build.gradle | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/geode-assembly/build.gradle b/geode-assembly/build.gradle
index a20dee7..3c697d7 100755
--- a/geode-assembly/build.gradle
+++ b/geode-assembly/build.gradle
@@ -336,6 +336,9 @@ distributions {
     contents {
       from writeBuildInfo
       from (rootDir) {
+        include 'ci/**'
+      }
+      from (rootDir) {
         exclude 'KEYS'
         exclude '**/gradlew'
         exclude '**/gradlew.bat'