PATH definition and proper command line output.
This commit is contained in:
parent
b4e9d9ec58
commit
48dda3455b
@ -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}"
|
||||
|
Loading…
Reference in New Issue
Block a user