You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by dm...@apache.org on 2020/12/31 23:46:05 UTC

[ignite-3] 03/03: ignite-13740: moved the curl command of Windows to an includes file (to avoid command duplicates on the getting started page).

This is an automated email from the ASF dual-hosted git repository.

dmagda pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/ignite-3.git

commit d04869ac42f58dc6af2af15f515ec61efdd39bb3
Author: Denis Magda <dm...@gridgain.com>
AuthorDate: Thu Dec 31 15:45:40 2020 -0800

    ignite-13740: moved the curl command of Windows to an includes file (to avoid command duplicates on the getting started page).
---
 docs/_docs/includes/ignite-cli-download-windows.adoc | 2 +-
 docs/_docs/quick-start/getting-started-guide.adoc    | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/docs/_docs/includes/ignite-cli-download-windows.adoc b/docs/_docs/includes/ignite-cli-download-windows.adoc
index 5bee012..e1a880e 100644
--- a/docs/_docs/includes/ignite-cli-download-windows.adoc
+++ b/docs/_docs/includes/ignite-cli-download-windows.adoc
@@ -14,5 +14,5 @@
 // limitations under the License.
 
 // tag::command[]
-curl https://dist.apache.org/repos/dist/dev/ignite/3.0.0-alpha1-rc1/ignite.exe -o ignite.exe
+curl -L "https://www.apache.org/dyn/mirrors/mirrors.cgi?action=download&filename=ignite/3.0.0-alpha1/ignite.exe" -o ignite.exe
 // end::command[]
diff --git a/docs/_docs/quick-start/getting-started-guide.adoc b/docs/_docs/quick-start/getting-started-guide.adoc
index af95d83..5225014 100644
--- a/docs/_docs/quick-start/getting-started-guide.adoc
+++ b/docs/_docs/quick-start/getting-started-guide.adoc
@@ -70,13 +70,13 @@ curl -L "https://www.apache.org/dyn/mirrors/mirrors.cgi?action=download&filename
 tab:Windows (PowerShell)[]
 [source,shell]
 ----
-curl -L "https://www.apache.org/dyn/mirrors/mirrors.cgi?action=download&filename=ignite/3.0.0-alpha1/ignite.exe" -o ignite.exe
+include::../includes/ignite-cli-download-windows.adoc[tag=command,indent=0]
 ----
 
 tab:Windows (CMD)[]
 [source,shell]
 ----
-curl -L "https://www.apache.org/dyn/mirrors/mirrors.cgi?action=download&filename=ignite/3.0.0-alpha1/ignite.exe" -o ignite.exe
+include::../includes/ignite-cli-download-windows.adoc[tag=command,indent=0]
 ----
 --