diff options
author | Bryan Bishop <kanzure@gmail.com> | 2014-03-08 10:24:46 -0600 |
---|---|---|
committer | Bryan Bishop <kanzure@gmail.com> | 2014-03-08 10:24:46 -0600 |
commit | 3e81c5eda76d8439158d058636a08be58eb2f6de (patch) | |
tree | 24e98c329333e67d594817374224bf7b3c708f6b /init.sh | |
parent | d7166960f80dd1e80411f0100812c8d7897455a5 (diff) | |
parent | 77d1d312b03ad5efb200533a99ca3d8f1a1c078c (diff) |
Merge pull request #241 from yenatch/cygwin
Bring back Cygwin instructions and get rid of init.sh
Diffstat (limited to 'init.sh')
-rwxr-xr-x | init.sh | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/init.sh b/init.sh deleted file mode 100755 index 07f1aa244..000000000 --- a/init.sh +++ /dev/null @@ -1,21 +0,0 @@ -#!/bin/sh - -# install rgbds -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 - -# set up the submodule (extras/) -git submodule init && \ -git submodule update && \ -sudo easy_install pip && \ -sudo pip install -r extras/requirements.txt - -# diff binary files using hexdump -git config diff.hex.textconv "hexdump -C" - |