diff options
Diffstat (limited to 'bootstrap.sh')
-rwxr-xr-x | bootstrap.sh | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/bootstrap.sh b/bootstrap.sh new file mode 100755 index 000000000..ade74a9aa --- /dev/null +++ b/bootstrap.sh @@ -0,0 +1,19 @@ +#!/bin/sh +set -e +set -x + +if [ ! -e csources/.git ]; then + git clone --depth 1 git://github.com/nim-lang/csources.git csources +fi + +cd "csources" +sh build.sh +cd ".." + +./bin/nim c koch +./koch boot -d:release + +cp -f install.sh.template install.sh +chmod +x install.sh + +exit 0 |