Skip to content

Use installation instruction with rustup as recommended in forge and rustup #1823

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions templates/components/tools/rustup.html.hbs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<div class="row">
<div id="platform-instructions-unix" class="instructions db">
<p>{{fluent "tools-rustup-unixy"}}</p>
<pre><code class="db w-100">curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh</code></pre>
<pre><code class="db w-100">curl https://sh.rustup.rs -sSf | sh</code></pre>
</div>
<div id="platform-instructions-win" class="instructions dn">
<p>{{fluent "tools-rustup-windows-2"}}</p>
Expand All @@ -17,7 +17,7 @@
</div>
<h3 class="mt4">{{fluent "tools-rustup-wsl-heading"}}</h3>
<p>{{fluent "tools-rustup-wsl"}}</p>
<pre><code class="db w-100">curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh</code></pre>
<pre><code class="db w-100">curl https://sh.rustup.rs -sSf | sh</code></pre>
</div>
<div id="platform-instructions-unknown" class="instructions dn">
<!-- unrecognized platform: ask for help -->
Expand All @@ -39,7 +39,7 @@
<p>
{{fluent "tools-rustup-manual-unixy"}}
</p>
<code class="db w-100">curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh</code>
<code class="db w-100">curl https://sh.rustup.rs -sSf | sh</code>
</div>
<hr>
<div>
Expand All @@ -53,7 +53,7 @@
<p>
{{tools-rustup-manual-default}}
</p>
<pre><code class="db w-100">curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh</code></pre>
<pre><code class="db w-100">curl https://sh.rustup.rs -sSf | sh</code></pre>
</div>
<hr>
<div>
Expand Down