Files
hamview/cmd/hamview-collector/entrypoint.sh
maze f234497162
Some checks failed
Test and build / Test and lint (push) Successful in 1m12s
Test and build / Build collector (push) Failing after 1m15s
Test and build / Build receiver (push) Failing after 1m29s
Refactor
2026-02-23 21:21:23 +01:00

11 lines
183 B
Bash
Executable File

#!/bin/sh
case "$@" in
"")
exec "/app/hamview-receiver" --config "/app/config/hamview-collector.yaml" ;;
;;
*)
exec "/bin/sh" -c "$@"
;;
esac