mirror of
https://github.com/thornAvery/kep-hack.git
synced 2025-09-17 02:40:50 +12:00
Don't use sudo in init.sh
Besides being bad practice, permissions are handled differently cross-platform (cygwin).
This commit is contained in:
parent
65245542c7
commit
283e4c1cee
|
@ -10,7 +10,7 @@ Set up the **pokered** repository:
|
||||||
git clone git://github.com/iimarckus/pokered.git
|
git clone git://github.com/iimarckus/pokered.git
|
||||||
cd pokered
|
cd pokered
|
||||||
|
|
||||||
./init.sh
|
sudo ./init.sh
|
||||||
|
|
||||||
|
|
||||||
Now **pokered.gbc** can be built from source.
|
Now **pokered.gbc** can be built from source.
|
||||||
|
|
8
init.sh
8
init.sh
|
@ -4,14 +4,14 @@
|
||||||
git clone git://github.com/bentley/rgbds.git && \
|
git clone git://github.com/bentley/rgbds.git && \
|
||||||
cd rgbds && \
|
cd rgbds && \
|
||||||
make && \
|
make && \
|
||||||
sudo mkdir -p /usr/local/man/man{1,7} && \
|
mkdir -p /usr/local/man/man{1,7} && \
|
||||||
sudo make install && \
|
make install && \
|
||||||
cd .. && \
|
cd .. && \
|
||||||
rm -rf rgbds
|
rm -rf rgbds
|
||||||
|
|
||||||
# set up the submodule (extras/)
|
# set up the submodule (extras/)
|
||||||
git submodule init && \
|
git submodule init && \
|
||||||
git submodule update && \
|
git submodule update && \
|
||||||
sudo easy_install pip && \
|
easy_install pip && \
|
||||||
sudo pip install -r extras/requirements.txt
|
pip install -r extras/requirements.txt
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue