diff options
author | yenatch <yenatch@gmail.com> | 2014-01-22 11:36:07 -0500 |
---|---|---|
committer | yenatch <yenatch@gmail.com> | 2014-01-22 11:36:07 -0500 |
commit | 283e4c1ceeef80ea0c291bfb67d478341fe3a6ca (patch) | |
tree | 88f27b68a477e26602ac3f502dfa6f7333bdd88f /init.sh | |
parent | 65245542c7e6f8b1c0bdb46354285dbde32c67ab (diff) |
Don't use sudo in init.sh
Besides being bad practice, permissions are handled differently cross-platform (cygwin).
Diffstat (limited to 'init.sh')
-rwxr-xr-x | init.sh | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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 |