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 <[email protected]>
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 <[email protected]>
Co-authored-by: Robert Houghton <[email protected]>
---
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'