summary refs log blame commit diff stats
path: root/build.sh
blob: 91e169241221ad8ca4cdd093e0ede2e0d3e3e600 (plain) (tree)
1
2
3
4
5
6



         
                               
                                             












                                    
#!/bin/sh
set -e
set -x

if [ ! -e csources/.git ]; then
	git submodule update --init --depth 1
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