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:44:19 UTC

[19/50] brooklyn-docs git commit: fix quote for download

fix quote for download


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

Branch: refs/heads/0.6.0
Commit: 303e25d6ca153d8c03db936f5d7c066065d24f8f
Parents: 26fa0f4
Author: Alex Heneveld <al...@cloudsoftcorp.com>
Authored: Mon Oct 21 13:57:45 2013 +0100
Committer: Alex Heneveld <al...@cloudsoftcorp.com>
Committed: Mon Oct 21 13:57:45 2013 +0100

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


http://git-wip-us.apache.org/repos/asf/brooklyn-docs/blob/303e25d6/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 c1856cf..ad9bc19 100644
--- a/docs/use/examples/before-begin.include.md
+++ b/docs/use/examples/before-begin.include.md
@@ -17,7 +17,7 @@ unpack it to your favourite location (e.g. `$(pwd)`),
 and export `BROOKLYN_HOME`:
 
 {% highlight bash %}
-% curl -L -o brooklyn-dist-{{ site.brooklyn-version }}-dist.tar.gz {{ this_dist_url_tgz }}
+% curl -L -o brooklyn-dist-{{ site.brooklyn-version }}-dist.tar.gz "{{ this_dist_url_tgz }}"
 % tar xvzf brooklyn-dist-{{ site.brooklyn-version }}-dist.tar.gz
 % export BROOKLYN_HOME=$(pwd)/brooklyn-{{ site.brooklyn-version }}/
 {% endhighlight %}
@@ -27,7 +27,7 @@ and export `BROOKLYN_HOME`:
 Grab a copy of the Brooklyn distribution and set up `BROOKLYN_HOME`:
 
 {% highlight bash %}
-% curl -LO {{ this_dist_url_tgz }}
+% curl -LO "{{ this_dist_url_tgz }}"
 % tar xvzf brooklyn-dist-{{ site.brooklyn-version }}-dist.tar.gz
 % export BROOKLYN_HOME=$(pwd)/brooklyn-{{ site.brooklyn-version }}/
 {% endhighlight %}