Revision 0d46b5398a2b397a658cccd70666ae556e594db4 authored by epiqc on 07 October 2016, 01:45:03 UTC, committed by epiqc on 07 October 2016, 01:45:03 UTC
1 parent e59c354
Raw File
build.sh
#!/bin/bash

cd scripts/
echo "Building Dependencies..."
python ../make.py bootstrap > messages.log
echo "Building RKQC"
python ../make.py build > messages.log
grep -i "Error" messages.log > errors.log
echo "Done."

back to top