You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cassandra.apache.org by ms...@apache.org on 2017/02/22 16:42:52 UTC

cassandra-builds git commit: Fix build command order

Repository: cassandra-builds
Updated Branches:
  refs/heads/master 15f616f65 -> 3477de5ed


Fix build command order


Project: http://git-wip-us.apache.org/repos/asf/cassandra-builds/repo
Commit: http://git-wip-us.apache.org/repos/asf/cassandra-builds/commit/3477de5e
Tree: http://git-wip-us.apache.org/repos/asf/cassandra-builds/tree/3477de5e
Diff: http://git-wip-us.apache.org/repos/asf/cassandra-builds/diff/3477de5e

Branch: refs/heads/master
Commit: 3477de5ed89126cdf893b37a614e5684324198e4
Parents: 15f616f
Author: Michael Shuler <mi...@pbandjelly.org>
Authored: Wed Feb 22 10:42:35 2017 -0600
Committer: Michael Shuler <mi...@pbandjelly.org>
Committed: Wed Feb 22 10:42:35 2017 -0600

----------------------------------------------------------------------
 README.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cassandra-builds/blob/3477de5e/README.md
----------------------------------------------------------------------
diff --git a/README.md b/README.md
index 056316e..89f95f2 100644
--- a/README.md
+++ b/README.md
@@ -11,9 +11,9 @@ Collection of scripts that can be used to create Cassandra Linux packages and to
    ```docker build -f docker/centos7-image.docker docker/```
 2. Run build script through docker (specify branch, e.g. cassandra-3.0 and version, e.g. 3.0.11):
    * Debian:
-    ```docker run -v `pwd`/dist:/dist `docker images -f label=org.cassandra.buildenv=centos -q` /home/build/build-rpms.sh <branch> <version>```
-   * RPM:
     ```docker run -v `pwd`/dist:/dist `docker images -f label=org.cassandra.buildenv=jessie -q` /home/build/build-debs.sh <branch>```
+   * RPM:
+    ```docker run -v `pwd`/dist:/dist `docker images -f label=org.cassandra.buildenv=centos -q` /home/build/build-rpms.sh <branch> <version>```
 
 You should find newly created Debian and RPM packages in the `dist` directory.