10 lines
181 B
Bash
10 lines
181 B
Bash
#!/bin/bash
|
|
|
|
# Entrypoint that handles both GitHub/Gitea actions things and direct commands execution.
|
|
echo "----------"
|
|
echo "Launching command:"
|
|
echo "$@"
|
|
echo "----------"
|
|
|
|
"$@"
|