10 lines
No EOL
185 B
Bash
Executable file
10 lines
No EOL
185 B
Bash
Executable file
#!/bin/bash
|
|
|
|
if [ ! -d bin ];
|
|
then
|
|
echo "Building OsmAnd-java...";
|
|
ant build
|
|
fi
|
|
echo "Starting tests..."
|
|
ant run-turn-lanes-test
|
|
echo "Results can be found in result.txt file." |