diff options
author | IIMarckus <iimarckus@gmail.com> | 2014-01-26 22:29:43 -0700 |
---|---|---|
committer | IIMarckus <iimarckus@gmail.com> | 2014-01-26 22:29:43 -0700 |
commit | 27c5fe339f0e09c1c0d56e04aca24a994579f95e (patch) | |
tree | 0b634d356b9fe4ebb6da307986271f757b03ab1c | |
parent | c832fd85c5a516e955a76340ca632cc47d80c89e (diff) | |
parent | 283e4c1ceeef80ea0c291bfb67d478341fe3a6ca (diff) |
Merge branch 'fix-init-sudo' of https://github.com/yenatch/pokered
-rw-r--r-- | INSTALL.md | 2 | ||||
-rwxr-xr-x | init.sh | 8 |
2 files changed, 5 insertions, 5 deletions
@@ -10,7 +10,7 @@ Set up the **pokered** repository: git clone git://github.com/iimarckus/pokered.git cd pokered - ./init.sh + sudo ./init.sh Now **pokered.gbc** can be built from source. @@ -4,14 +4,14 @@ git clone git://github.com/bentley/rgbds.git && \ cd rgbds && \ make && \ -sudo mkdir -p /usr/local/man/man{1,7} && \ -sudo make install && \ +mkdir -p /usr/local/man/man{1,7} && \ +make install && \ cd .. && \ rm -rf rgbds # set up the submodule (extras/) git submodule init && \ git submodule update && \ -sudo easy_install pip && \ -sudo pip install -r extras/requirements.txt +easy_install pip && \ +pip install -r extras/requirements.txt |