summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorAraq <rumpf_a@web.de>2016-11-07 00:56:47 +0100
committerAraq <rumpf_a@web.de>2016-11-07 00:56:47 +0100
commit8b30506f724186625d8799989e5ee403d158c0b6 (patch)
tree38f5742334159003b1c9db4ef72df0b00162e109
parent52bb696cd4ad57ac647a0bcf7da53be4ef014b69 (diff)
downloadNim-8b30506f724186625d8799989e5ee403d158c0b6.tar.gz
never was documented anyway
-rw-r--r--bootstrap.sh20
1 files changed, 0 insertions, 20 deletions
diff --git a/bootstrap.sh b/bootstrap.sh
deleted file mode 100644
index 5d05ddbf8..000000000
--- a/bootstrap.sh
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/bin/sh
-set -e
-set -x
-
-if [ ! -e csources/.git ]; then
-	git clone --depth 1 https://github.com/nim-lang/csources.git csources
-fi
-
-cd "csources"
-sh build.sh
-cd ".."
-
-./bin/nim c koch
-./koch boot -d:release
-./koch geninstall
-
-set +x
-
-echo
-echo 'Install Nim using "./install.sh <dir>" or "sudo ./install.sh <dir>".'