1
0
Fork 0
mirror of https://github.com/sdr-enthusiasts/docker-adsb-ultrafeeder.git synced 2024-11-21 21:30:11 +00:00

linting fix

This commit is contained in:
kx1t 2023-04-18 20:37:52 -04:00
parent 19a2b4d0db
commit 1a574d4e36

View file

@ -1,5 +1,5 @@
#!/usr/bin/with-contenv bash
# shellcheck shell=bash disable=SC2016,SC1091
# shellcheck shell=bash disable=SC2015,SC2016,SC1091
APPNAME="readsb"
@ -182,7 +182,7 @@ if [[ -n "$READSB_NET_CONNECTOR" ]]; then
fi
# Handle ULTRAFEEDER_CONFIG / ULTRAFEEDER_NET_CONNECTOR elements relevant to readsb:
[[ "${#READSB_CONF_ARR[@]}" > 0 ]] && READSB_CMD+=("${READSB_CONF_ARR[@]}") || true
[[ "${#READSB_CONF_ARR[@]}" -gt 0 ]] && READSB_CMD+=("${READSB_CONF_ARR[@]}") || true
# Handle "--net-connector-delay=<seconds>"
if [[ -n "$READSB_NET_CONNECTOR_DELAY" ]]; then