mirror of
https://github.com/OpenRCT2/OpenRCT2.git
synced 2025-01-23 10:51:58 -05:00
14 lines
346 B
Text
14 lines
346 B
Text
|
#!/bin/bash
|
||
|
set -e
|
||
|
|
||
|
# Ensure we are in root directory
|
||
|
basedir="$(readlink -f `dirname $0`/..)"
|
||
|
cd $basedir/bin
|
||
|
|
||
|
# Scan objects first so that does not happen within a test
|
||
|
echo -e "\033[0;36mBuilding OpenRCT2 repository indexes...\033[0m"
|
||
|
./openrct2 scan-objects
|
||
|
|
||
|
echo -e "\033[0;36mRunning OpenRCT2 testpaint tests...\033[0m"
|
||
|
./testpaint || true
|