ZEST-100 Fix commands for dev/release dist uploads, they were too greedy
Project: http://git-wip-us.apache.org/repos/asf/zest-qi4j/repo Commit: http://git-wip-us.apache.org/repos/asf/zest-qi4j/commit/d3761888 Tree: http://git-wip-us.apache.org/repos/asf/zest-qi4j/tree/d3761888 Diff: http://git-wip-us.apache.org/repos/asf/zest-qi4j/diff/d3761888 Branch: refs/heads/develop Commit: d37618885b5f9d44804356c683e05762a87c13d6 Parents: ba94c73 Author: Paul Merlin <[email protected]> Authored: Wed Jul 22 13:53:06 2015 +0200 Committer: Paul Merlin <[email protected]> Committed: Wed Jul 22 13:53:06 2015 +0200 ---------------------------------------------------------------------- manual/src/docs/tutorials/howto-releasing-apache.txt | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/zest-qi4j/blob/d3761888/manual/src/docs/tutorials/howto-releasing-apache.txt ---------------------------------------------------------------------- diff --git a/manual/src/docs/tutorials/howto-releasing-apache.txt b/manual/src/docs/tutorials/howto-releasing-apache.txt index 009d2ca..04fcdfb 100644 --- a/manual/src/docs/tutorials/howto-releasing-apache.txt +++ b/manual/src/docs/tutorials/howto-releasing-apache.txt @@ -32,9 +32,6 @@ You need a unix-like environment to actually perform the release process. This tutorial is known to work on Linux and Mac. ==== - -// TODOs -// - review commands for managing dev/release dist uploads, they may be too greedy Before going further you obviously should have read the <<build-system, Build System>> tutorial and already built Zest⢠from source, signing included. @@ -294,7 +291,8 @@ Upload source and binary distributions, checksums and signatures to https://dist [source,shell] ---- -cp zest-java/build/distributions/* zest-dist-dev/ +cp zest-java/build/distributions/apache-zest-java-<RELEASE-VERSION>-src* zest-dist-dev/ +cp zest-java/build/distributions/apache-zest-java-<RELEASE-VERSION>-bin* zest-dist-dev/ cd zest-dist-dev svn add * --force svn commit -m "zest: upload <RELEASE-VERSION> to dist/dev/zest" @@ -385,7 +383,8 @@ Move the release distributions, checksums and signatures from https://dist.apach [source,shell] ---- -mv zest-dist-dev/*<RELEASE-VERSION>*.* zest-dist-release/ +mv zest-dist-dev/apache-zest-java-<RELEASE-VERSION>-src* zest-dist-release/ +mv zest-dist-dev/apache-zest-java-<RELEASE-VERSION>-bin* zest-dist-release/ cd zest-dist-dev svn add * --force svn commit -m "zest: removing <RELEASE-VERSION> from dist/dev/zest as the VOTE passed"
