mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-05-21 03:37:36 +08:00
cde7ffe7f9
Signed-off-by: Ramon Roche <mrpollo@gmail.com>
12 lines
157 B
Bash
Executable File
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
|