Skip to content

Commit

Permalink
docs: pin to current "stable" version of the script
Browse files Browse the repository at this point in the history
  • Loading branch information
ZoomTen committed Jun 25, 2024
1 parent 67047f4 commit ffdb85e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ This is a version manager for [RGBDS](https://github.com/gbdev/rgbds). It is a p
### 1. Get rgbenv
```sh
sudo apt install -y libpng-dev pkg-config build-essential bison git curl
sudo curl -o /usr/local/bin/rgbenv https://raw.githubusercontent.com/gbdev/rgbenv/master/rgbenv
sudo curl -Lo /usr/local/bin/rgbenv https://github.com/gbdev/rgbenv/raw/v0.1.3/rgbenv
sudo chmod +x /usr/local/bin/rgbenv
```

Expand Down Expand Up @@ -99,7 +99,7 @@ $ CC=egcc CXX=eg++ rgbenv install $YOUR_DESIRED_VERSION</code></pre></li>

<ol>
<li>Install whatever dependencies it needs, through the above section.</li>
<li>Download the rgbenv script, and place it in <code>/usr/local/bin/</code> (or any directory listed when you run <code>echo $PATH</code>) The fastest way is through: <pre><code># curl https://raw.githubusercontent.com/gbdev/rgbenv/master/rgbenv > /usr/local/bin/rgbenv</code></pre></li>
<li>Download the rgbenv script, and place it in <code>/usr/local/bin/</code> (or any directory listed when you run <code>echo $PATH</code>) The fastest way is through: <pre><code># curl -Lo /usr/local/bin/rgbenv https://github.com/gbdev/rgbenv/raw/v0.1.3/rgbenv</code></pre></li>
<li>Ensure the script is executable: <pre><code># chmod +x /usr/local/bin/rgbenv
</code></pre>(replace <code>/usr/local/bin/rgbenv</code> with where you put the rgbenv script)</li>
<li>Install the version you want, say 0.6.0:<pre><code>$ rgbenv install 0.6.0
Expand Down

0 comments on commit ffdb85e

Please sign in to comment.