11 lines
176 B
Bash
Executable file
11 lines
176 B
Bash
Executable file
#!/bin/sh
|
|
set -e
|
|
cd "$(dirname "$(realpath "$0")")"
|
|
|
|
if ! [ -f /tmp/build-tp4-sim/robotCommand ]
|
|
then ./build.sh
|
|
fi
|
|
|
|
cd /tmp/build-tp4-sim/
|
|
/tmp/build-tp4-sim/robotCommand $@
|
|
|