summaryrefslogtreecommitdiff
path: root/init.sh
diff options
context:
space:
mode:
authorBryan Bishop <kanzure@gmail.com>2014-03-08 10:24:46 -0600
committerBryan Bishop <kanzure@gmail.com>2014-03-08 10:24:46 -0600
commit3e81c5eda76d8439158d058636a08be58eb2f6de (patch)
tree24e98c329333e67d594817374224bf7b3c708f6b /init.sh
parentd7166960f80dd1e80411f0100812c8d7897455a5 (diff)
parent77d1d312b03ad5efb200533a99ca3d8f1a1c078c (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-xinit.sh21
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"
-