You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@brooklyn.apache.org by he...@apache.org on 2019/12/20 16:19:55 UTC

[brooklyn-dist] 07/10: don't ignore cli vendor directory in copying source files

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

heneveld pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/brooklyn-dist.git

commit ab40e5978b86bf10ae217def4646c51c15f01eca
Author: Geoff Macartney <ge...@gmail.com>
AuthorDate: Thu Dec 19 23:39:51 2019 +0000

    don't ignore cli vendor directory in copying source files
    
    the vendor directory is source managed at the moment, which
    makes this script easier. We can look into improving this
    in a later PR.
---
 release/make-release-artifacts.sh | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/release/make-release-artifacts.sh b/release/make-release-artifacts.sh
index fc2041c..f12151c 100755
--- a/release/make-release-artifacts.sh
+++ b/release/make-release-artifacts.sh
@@ -175,9 +175,7 @@ mkdir -p ${src_staging_dir}
 # * sandbox (which hasn't been vetted so thoroughly)
 # * release (where this is running, and people who *have* the release don't need to make it)
 # * jars and friends (these are sometimes included for tests, but those are marked as skippable,
-# * cli/vendor - that's not source controlled and not removed by mvn clean so ignore it in case it's already there
-#     and apache convention does not allow them in source builds; see PR #365
-rsync -rtp --exclude .git\* --exclude brooklyn-docs/ --exclude brooklyn-library/sandbox/ --exclude brooklyn-client/cli/vendor/ --exclude brooklyn-dist/release/ --exclude '**/*.[ejw]ar' . ${staging_dir}/${release_name}-src
+rsync -rtp --exclude .git\* --exclude brooklyn-docs/ --exclude brooklyn-library/sandbox/ --exclude brooklyn-dist/release/ --exclude '**/*.[ejw]ar' . ${staging_dir}/${release_name}-src
 
 rm -rf ${artifact_dir}
 mkdir -p ${artifact_dir}