You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kylin.apache.org by li...@apache.org on 2017/02/18 04:40:43 UTC

kylin git commit: minor fix document style

Repository: kylin
Updated Branches:
  refs/heads/document b5d3be4f4 -> c3417443e


minor fix document style


Project: http://git-wip-us.apache.org/repos/asf/kylin/repo
Commit: http://git-wip-us.apache.org/repos/asf/kylin/commit/c3417443
Tree: http://git-wip-us.apache.org/repos/asf/kylin/tree/c3417443
Diff: http://git-wip-us.apache.org/repos/asf/kylin/diff/c3417443

Branch: refs/heads/document
Commit: c3417443efbfed295e63ae2437e561b24dd0e421
Parents: b5d3be4
Author: Li Yang <li...@apache.org>
Authored: Sat Feb 18 12:40:39 2017 +0800
Committer: Li Yang <li...@apache.org>
Committed: Sat Feb 18 12:40:39 2017 +0800

----------------------------------------------------------------------
 website/_dev/howto_package.md |  2 +-
 website/_dev/howto_release.md | 10 ++++++++--
 2 files changed, 9 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/kylin/blob/c3417443/website/_dev/howto_package.md
----------------------------------------------------------------------
diff --git a/website/_dev/howto_package.md b/website/_dev/howto_package.md
index 8d66dbe..b4ff0c5 100644
--- a/website/_dev/howto_package.md
+++ b/website/_dev/howto_package.md
@@ -35,7 +35,7 @@ build/script/package.sh
 ##### Build Package for CDH 5.7
 ```
 cd kylin
-build/script/package.sh -P cdh 5.7
+build/script/package.sh -P cdh5.7
 ```
 
 ##### Build Package for HBase 0.98.x

http://git-wip-us.apache.org/repos/asf/kylin/blob/c3417443/website/_dev/howto_release.md
----------------------------------------------------------------------
diff --git a/website/_dev/howto_release.md b/website/_dev/howto_release.md
index 6be0e04..4bdc41e 100644
--- a/website/_dev/howto_release.md
+++ b/website/_dev/howto_release.md
@@ -420,8 +420,14 @@ After publish the release, you need generate the binary packages and then put th
 
 * Git checkout the tag for current release; 
 * Make a binary package by refering to [this doc](howto_package.html);
-* Sign the generated binary package with gpg, e.g,: "gpg --armor --output apache-kylin-1.5.0-bin.tar.gz.asc --detach-sig apache-kylin-1.5.0-bin.tar.gz"
-* Generate the md5 file for the binary package, e.g,: "md5sum < apache-kylin-1.5.0-bin.tar.gz > apache-kylin-1.5.0-bin.tar.gz.md5"
+* Sign the generated binary package with gpg, e.g,:
+{% highlight bash %}
+gpg --armor --output apache-kylin-1.5.0-bin.tar.gz.asc --detach-sig apache-kylin-1.5.0-bin.tar.gz
+{% endhighlight %}
+* Generate the md5 file for the binary package, e.g,:
+{% highlight bash %}
+md5sum < apache-kylin-1.5.0-bin.tar.gz > apache-kylin-1.5.0-bin.tar.gz.md5
+{% endhighlight %}
 * Move the binary package, the signature file and the md5 fileto the svn release folder for this version;
 * For different Hadoop/HBase version, you may need repeat the above steps;
 * Add the files and then commit the svn changes.