diff --git a/entrypoint.sh b/entrypoint.sh index 11ef38b..0ce044c 100644 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -1,13 +1,11 @@ #!/bin/bash # Entrypoint that handles both GitHub/Gitea actions things and direct commands execution. -echo "----------" -echo "Launching command:" -echo "$@" -echo "----------" - CMD=$* +# Just ensure we have PATH defined properly. +PATH="${PATH}:/usr/bin/:/usr/sbin/:/bin/:/usr/local/bin/:/opt/bin/" + if [ "${CMD}" == "" ]; then CMD="${INPUT_COMMAND}" fi @@ -17,4 +15,9 @@ if [ "${CMD}" == "" ]; then exit 1 fi +echo "----------" +echo "Launching command:" +echo "${CMD}" +echo "----------" + "${CMD}"