* MOD: workflow tests
Some checks failed
Build and push / check and test (push) Failing after 8s
Build and push / build_and_push (push) Failing after 2s

Signed-off-by: Uwe Hermann <uh@uleenucks.de>
This commit is contained in:
2024-01-21 13:29:55 +01:00
parent 84b0d50d05
commit c265e9b41f

View File

@@ -68,14 +68,16 @@ main(){
fi
}
# shellcheck disable=SC2128
run(){
args=( "$@" )
args=$@
f=$1
if [[ "$1" == "" ]]; then
if [[ "$f" == "" ]]; then
main "$args"
else
"$args"
$args
fi
}
run "$@"
run $@