From 7b0be3ac581f42512f85a54737bbd035354db3a6 Mon Sep 17 00:00:00 2001 From: Manuel Segarra-Abad Date: Tue, 3 Oct 2023 12:57:25 +0300 Subject: [PATCH] Fix passing arguments errors --- entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entrypoint.sh b/entrypoint.sh index d8fdc59d..ebef8951 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -35,7 +35,7 @@ if [ "${LOGGING_DIR}" != "" ]; then /usr/bin/mavlink-routerd -c /etc/mavlink-router/main.conf elif [ "$1" != "" ]; then - /usr/bin/mavlink-routerd "$args" + /usr/bin/mavlink-routerd $args else /usr/bin/mavlink-routerd fi