summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcus Huderle <huderlem@gmail.com>2018-06-05 23:55:29 -0500
committerMarcus Huderle <huderlem@gmail.com>2018-06-06 00:08:36 -0500
commit77093721ba470adb6ba3fccccb6cb8de8a99a220 (patch)
treea929faa21877d9ba2ff38504446c4c2d61fae676
parent391860e04425024b9be3b4eed54deec6769a6a2c (diff)
Update installation instructions to export DEVKITPRO
-rw-r--r--INSTALL.md14
1 files changed, 9 insertions, 5 deletions
diff --git a/INSTALL.md b/INSTALL.md
index aa5b8f91a..ad3262007 100644
--- a/INSTALL.md
+++ b/INSTALL.md
@@ -4,8 +4,10 @@ Install [**devkitARM**](http://devkitpro.org/wiki/Getting_Started/devkitARM).
Then run the following commands.
- export DEVKITARM=/opt/devkitPro/devkitARM
- echo "export DEVKITARM=/opt/devkitPro/devkitARM" >> ~/.bashrc
+ export DEVKITPRO=/opt/devkitPro
+ echo "export DEVKITPRO=$DEVKITPRO" >> ~/.bashrc
+ export DEVKITARM=$DEVKITPRO/devkitARM
+ echo "export DEVKITARM=$DEVKITARM" >> ~/.bashrc
git clone https://github.com/pret/pokeruby
git clone https://github.com/pret/agbcc
@@ -29,8 +31,10 @@ Then in **Terminal**, run the following commands.
xcode-select --install
- export DEVKITARM=${HOME}/devkitPro/devkitARM
- echo "export DEVKITARM=${HOME}/devkitPro/devkitARM" >> ~/.bashrc
+ export DEVKITPRO=${HOME}/devkitPro
+ echo "export DEVKITPRO=${DEVKITPRO}" >> ~/.bashrc
+ export DEVKITARM=${DEVKITPRO}/devkitARM
+ echo "export DEVKITARM=${DEVKITARM}" >> ~/.bashrc
git clone https://github.com/pret/pokeruby
git clone https://github.com/pret/agbcc
@@ -64,7 +68,7 @@ In the **Cygwin terminal**, enter these commands:
export DEVKITPRO=/cygdrive/c/devkitpro
echo export DEVKITPRO=$DEVKITPRO >> ~/.bashrc
- export DEVKITARM=/cygdrive/c/devkitpro/devkitARM
+ export DEVKITARM=$DEVKITPRO/devkitARM
echo export DEVKITARM=$DEVKITARM >> ~/.bashrc
git clone https://github.com/pret/pokeruby