You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@brooklyn.apache.org by he...@apache.org on 2016/02/01 18:29:01 UTC

[27/50] brooklyn-docs git commit: Remove some comments from "before you begin" and make tar verbose

Remove some comments from "before you begin" and make tar verbose

Didn't see them last time . . .


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

Branch: refs/heads/0.4.0
Commit: fcffc9094579c8c3081cac7649989a93898c5a4e
Parents: 3465df2
Author: Cosmin Dumitrache <co...@cloudsoftcorp.com>
Authored: Fri Jul 27 12:37:18 2012 +0100
Committer: Cosmin Dumitrache <co...@cloudsoftcorp.com>
Committed: Fri Jul 27 12:41:06 2012 +0100

----------------------------------------------------------------------
 docs/use/examples/before-begin.include.md | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/brooklyn-docs/blob/fcffc909/docs/use/examples/before-begin.include.md
----------------------------------------------------------------------
diff --git a/docs/use/examples/before-begin.include.md b/docs/use/examples/before-begin.include.md
index 290f0ba..2aac51a 100644
--- a/docs/use/examples/before-begin.include.md
+++ b/docs/use/examples/before-begin.include.md
@@ -6,7 +6,7 @@ First, grab a copy of the Brooklyn distribution:
 
 {% highlight bash %}
 % curl -L http://developers.cloudsoftcorp.com/maven/releases/io/brooklyn/brooklyn-dist/0.4.0-M2/brooklyn-dist-0.4.0-M2-dist.tar.gz
-% tar xzf brooklyn-dist-0.4.0-M2-dist.tar.gz
+% tar xvzf brooklyn-dist-0.4.0-M2-dist.tar.gz
 % export BROOKLYN_HOME=$(pwd)/brooklyn
 {% endhighlight %}
 
@@ -14,10 +14,8 @@ Then, grab a copy of the brooklyn-examples source code and build with Maven:
 
 {% highlight bash %}
 % curl -L https://github.com/brooklyncentral/brooklyn-examples/tarball/0.4.0-M2 -o brooklyn-examples-dist-0.4.0-M2.tgz
-% tar xzf brooklyn-examples-dist-0.4.0-M2.tgz
-# set up an environment variable to point to it for convenience
+% tar xvzf brooklyn-examples-dist-0.4.0-M2.tgz
 % export BROOKLYN_EXAMPLES_DIR=$(pwd)/brooklyncentral-brooklyn-examples-b296711
-# build with Maven
 % cd ${BROOKLYN_EXAMPLES_DIR}
 % mvn clean install
 {% endhighlight %}