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 bd642a172d71fefa4ea9bb341ec814ab8599bc35 Author: Geoff Macartney <[email protected]> AuthorDate: Thu Dec 19 19:38:00 2019 +0000 make sure environment.sh exports its variables to the env --- release/environment.sh | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/release/environment.sh b/release/environment.sh index 47f3280..1ddf73a 100755 --- a/release/environment.sh +++ b/release/environment.sh @@ -102,10 +102,10 @@ echo >&2 "The continuing version is: ${continue_version}" confirm || exit cat <<EOF -OLD_MASTER_VERSION=${current_version} -NEW_MASTER_VERSION=${continue_version} -VERSION_NAME=${release_version} -RC_NUMBER=${rc_suffix} -SUBMODULES="$( perl -n -e 'if ($_ =~ /path += +(.*)$/) { print $1." " }' < .gitmodules )" -MODULES=". \${SUBMODULES}" +export OLD_MASTER_VERSION=${current_version} +export NEW_MASTER_VERSION=${continue_version} +export VERSION_NAME=${release_version} +export RC_NUMBER=${rc_suffix} +export SUBMODULES="$( perl -n -e 'if ($_ =~ /path += +(.*)$/) { print $1." " }' < .gitmodules )" +export MODULES=". \${SUBMODULES}" EOF
