Skip to content

Commit

Permalink
Getting Started correct use of .zip/tar
Browse files Browse the repository at this point in the history
  • Loading branch information
PeterTurcan authored and alandefreitas committed May 21, 2024
1 parent 4a253fc commit d10d7f2
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions user-guide/modules/ROOT/pages/getting-started.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ Official repository: https://github.com/boostorg/website-v2-docs
////
= Getting Started
:navtitle: Getting Started
:latest_tag: 1_82_0
:latest_version: 1.82.0
:latest_tag: 1_85_0
:latest_version: 1.85.0
:release_basename: boost_{latest_tag}
:release_filename: {release_basename}.tar.bz2
:release_zip_filename: {release_basename}.zip
Expand Down Expand Up @@ -340,15 +340,15 @@ Windows::
[source,none,subs="attributes+"]
----
curl {release_zip_url} <1>
7z x {release_filename} <2>
tar -xf {release_zip_filename} <2>
cd {release_basename} <3>
----
<.> Download the boost distribution `{release_zip_filename}`
<.> Extract the files into `{release_basename}`
<.> Change the current working directory to `{release_basename}`
Note that these instructions assume you have https://curl.se/[Curl,window="_blank"] and https://www.7-zip.org/[7-Zip,window="_blank"] installed on your system.
Note:: These instructions assume you have https://curl.se/[Curl,window="_blank"] and https://gnuwin32.sourceforge.net/packages/gtar.htm[Tar,window="_blank"] installed on your system, and your OS is Windows 10 or later.
--
Expand All @@ -358,7 +358,7 @@ Linux::
[source,bash,subs="attributes+"]
----
wget {release_url} <1>
tar xvfj {release_filename} <2>
tar xf {release_filename} <2>
cd {release_basename} <3>
----
Expand All @@ -373,7 +373,7 @@ macOS::
[source,bash,subs="attributes+"]
----
curl {release_url} <1>
tar xvfj {release_filename} <2>
tar xf {release_filename} <2>
cd {release_basename} <3>
----
Expand Down

0 comments on commit d10d7f2

Please sign in to comment.