blob: c478ab8fdf66f04af58c02e6b4268b3273978095 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/bash
failed=0
USE_RESTCLIENT=1 USE_INTERNAL_LUA=1 make -j 2 || failed=1
if [[ $failed -eq 1 ]]; then
echo "Build failure."
exit $failed
fi
./misc/download-paks.sh
chmod -R ugo+rw build
|