diff options
author | yenatch <yenatch@gmail.com> | 2013-12-11 21:58:51 -0500 |
---|---|---|
committer | yenatch <yenatch@gmail.com> | 2013-12-11 21:58:51 -0500 |
commit | 515407b9eb46de81e28e0ebe664eb57b1e3ab79b (patch) | |
tree | b444d62e2111cb16a7f6275e09de9f1a4bb1d9a2 | |
parent | 418878d9329caa45c8f3fa0c5798770d95234f90 (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,7 +14,7 @@ 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 # diff binary files using hexdump git config diff.hex.textconv "hexdump -C" |