diff options
author | yenatch <yenatch@gmail.com> | 2013-12-11 03:14:46 -0500 |
---|---|---|
committer | yenatch <yenatch@gmail.com> | 2013-12-11 03:14:46 -0500 |
commit | f5fcfe4dae71b7d86ae4835536bac6b3f75be8f8 (patch) | |
tree | b2975d0c0065e32a25ccb2d65112cc8f632bd029 | |
parent | 515357a4504aa8c0816f088054c26f1902e71e72 (diff) |
init.sh: sudo pip install and make sure rgbds man dirs exist
-rwxr-xr-x | init.sh | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -4,6 +4,8 @@ git clone git://github.com/bentley/rgbds.git && \ cd rgbds && \ make && \ +mkdir -p /usr/local/man/man1 && \ +mkdir -p /usr/local/man/man7 && \ sudo make install && \ cd .. && \ rm -rf rgbds @@ -12,5 +14,5 @@ rm -rf rgbds git submodule init && \ git submodule update && \ sudo easy_install pip && \ -pip install -r extras/requirements.txt +sudo pip install -r extras/requirements.txt |