Skip to content
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