diff options
-rwxr-xr-x | tf2_watch | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -9,6 +9,16 @@ if [ -z "${TIME_BETWEEN_SAMPLES}" ]; then TIME_BETWEEN_SAMPLES="25" fi +depends() { + if ! type "$1" >/dev/null; then + die "\"$1\" must be installed and in your \$PATH" + fi +} + +depends pkill +depends mupdf +depends rosrun + GENERATED_PDF="frames.pdf" GENERATED_RV="frames.gv" |