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

Don't rely on $_ env magic #90

Merged
merged 3 commits into from
Jan 9, 2023
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion templates/downloads-rakudo-source.html.ep
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ raku -Ilib bin/zef install .</code></pre>
<div id="collapse-build-wsl" class="collapse"
aria-labelledby="collapse-build-wsl" data-parent="#build-accordion">
<div class="card-body">
<pre><code>mkdir ~/rakudo &amp;&amp; cd $_
<pre><code>mkdir ~/rakudo &amp;&amp; cd ~/rakudo
curl -LJO <%= url_for('latest', product => 'rakudo', platform => 'src')->to_abs %>
tar -xzf rakudo-*.tar.gz
mv rakudo-*/* .
Expand Down
4 changes: 2 additions & 2 deletions templates/star-source.html.ep
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
<p>The exact steps required may differ, depending on
your operating system:</p>

<pre class="suck-b"><code>mkdir ~/rakudo &amp;&amp; cd $_
<pre class="suck-b"><code>mkdir ~/rakudo &amp;&amp; cd ~/rakudo
curl -LJO <%= url_for('latest', product => 'star', platform => 'src')->to_abs %>
tar -xzf rakudo-star-*.tar.gz
mv rakudo-star-*/* .
Expand Down Expand Up @@ -118,7 +118,7 @@ gmake
<p>The exact steps required may differ, depending on
your operating system:</p>

<pre class="suck-b"><code>mkdir ~/rakudo &amp;&amp; cd $_
<pre class="suck-b"><code>mkdir ~/rakudo &amp;&amp; cd ~/rakudo
curl -LJO <%= url_for('latest', product => 'star', platform => 'src')->to_abs %>
tar -xzf rakudo-star-*.tar.gz
mv rakudo-star-*/* .
Expand Down