Updated Branches: refs/heads/develop ddcb1e70a -> 186b2eddf
No longer require build number to passed along - git doesn't have a build number concept like SVN Project: http://git-wip-us.apache.org/repos/asf/flex-sdk/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-sdk/commit/186b2edd Tree: http://git-wip-us.apache.org/repos/asf/flex-sdk/tree/186b2edd Diff: http://git-wip-us.apache.org/repos/asf/flex-sdk/diff/186b2edd Branch: refs/heads/develop Commit: 186b2eddf46faf06077eccccfd39a4315d094faf Parents: ddcb1e7 Author: Justin Mclean <[email protected]> Authored: Wed Apr 10 13:29:55 2013 +1000 Committer: Justin Mclean <[email protected]> Committed: Wed Apr 10 13:29:55 2013 +1000 ---------------------------------------------------------------------- build/build_release.sh | 15 ++------------- 1 files changed, 2 insertions(+), 13 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/186b2edd/build/build_release.sh ---------------------------------------------------------------------- diff --git a/build/build_release.sh b/build/build_release.sh index d6dc39b..b637828 100755 --- a/build/build_release.sh +++ b/build/build_release.sh @@ -22,24 +22,13 @@ # These commands should be executed in the root directory. cd .. -# find the line with the format 'Last Changed Rev: 1354196', and remove -# 'Last Changed Rev: ' from the beginning of the line -BUILD_NUMBER=`svn info | grep 'Last Changed Rev:' | sed 's/^Last Changed Rev: //'` -echo BUILD_NUMBER is $BUILD_NUMBER - -# Tag the release build. Can svn delete the tag if the build is bad or pulled. -TAG_NAME="apache-flex-sdk-4.8.0-RC1" -#svn copy -r $BUILD_NUMBER -m "Tagging build $BUILD_NUMBER." \ -# https://svn.apache.org/repos/asf/incubator/flex/trunk \ -# https://svn.apache.org/repos/asf/incubator/flex/tags/$TAG_NAME - # Do a release build. # Set the build number in flex-sdk-description.xml # Don't prompt for optional packages or acknowledgment of reciprocal licenses -ant -Dbuild.number=$BUILD_NUMBER -Dbuild.noprompt= release +ant -Dbuild.noprompt= release # Build the asdoc package. -ant -Dbuild.number=$BUILD_NUMBER asdoc-package +ant asdoc-package # sign_and_hash.sh is an Apache tool. # Creates detached ascii signatures and md5 hashes for each of the files in the
