Files
Ramon Roche cde7ffe7f9 container: px4-sitl image
Signed-off-by: Ramon Roche <mrpollo@gmail.com>
2025-07-03 18:59:02 +00:00

12 lines
157 B
Bash
Executable File

#!/bin/sh
set -e
PX4_BIN=/opt/px4/bin/px4
# if no args passed, default to SITL none
if [ $# -eq 0 ]; then
exec "$PX4_BIN"
else
exec "$PX4_BIN" "$@"
fi