Return-Path: X-Original-To: apmail-brooklyn-commits-archive@minotaur.apache.org Delivered-To: apmail-brooklyn-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 01B7618E5A for ; Thu, 17 Mar 2016 12:55:00 +0000 (UTC) Received: (qmail 9463 invoked by uid 500); 17 Mar 2016 12:54:59 -0000 Delivered-To: apmail-brooklyn-commits-archive@brooklyn.apache.org Received: (qmail 9399 invoked by uid 500); 17 Mar 2016 12:54:59 -0000 Mailing-List: contact commits-help@brooklyn.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@brooklyn.apache.org Delivered-To: mailing list commits@brooklyn.apache.org Received: (qmail 9187 invoked by uid 99); 17 Mar 2016 12:54:59 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 17 Mar 2016 12:54:59 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 6AA15E00C6; Thu, 17 Mar 2016 12:54:59 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: heneveld@apache.org To: commits@brooklyn.apache.org Date: Thu, 17 Mar 2016 12:55:06 -0000 Message-Id: <7e2b513ed12a4b8e8ec76863c07c0bb4@git.apache.org> In-Reply-To: <0d41a24c394149079b2aa793ce3b2ebf@git.apache.org> References: <0d41a24c394149079b2aa793ce3b2ebf@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [08/16] brooklyn-dist git commit: Make release script: minor tweaks Make release script: minor tweaks Project: http://git-wip-us.apache.org/repos/asf/brooklyn-dist/repo Commit: http://git-wip-us.apache.org/repos/asf/brooklyn-dist/commit/f4b73e95 Tree: http://git-wip-us.apache.org/repos/asf/brooklyn-dist/tree/f4b73e95 Diff: http://git-wip-us.apache.org/repos/asf/brooklyn-dist/diff/f4b73e95 Branch: refs/heads/master Commit: f4b73e9514ad924079416185b8ea796df2e38159 Parents: 0c9e1cc Author: Richard Downer Authored: Wed Mar 16 16:09:05 2016 +0000 Committer: Richard Downer Committed: Wed Mar 16 16:09:37 2016 +0000 ---------------------------------------------------------------------- release/make-release-artifacts.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/brooklyn-dist/blob/f4b73e95/release/make-release-artifacts.sh ---------------------------------------------------------------------- diff --git a/release/make-release-artifacts.sh b/release/make-release-artifacts.sh index c7ab1c1..310b3b6 100755 --- a/release/make-release-artifacts.sh +++ b/release/make-release-artifacts.sh @@ -169,7 +169,7 @@ for module in ${modules}; do ( cd $module && git clean -dxf ); done echo "Creating source release folder ${release_name}" set -x mkdir -p ${src_staging_dir} -mkdir -p ${bin_staging_dir} + # exclude: # * docs (which isn't part of the release, and adding license headers to js files is cumbersome) # * sandbox (which hasn't been vetted so thoroughly) @@ -192,6 +192,7 @@ set +x echo "Proceeding to build binary release" set -x +mkdir -p ${bin_staging_dir} # Workaround for bug BROOKLYN-1 ( cd ${src_staging_dir} && mvn clean --projects :brooklyn-archetype-quickstart )