mirror of
https://github.com/zhigang1992/actions.git
synced 2026-01-12 22:45:39 +08:00
12 lines
222 B
Bash
Executable File
12 lines
222 B
Bash
Executable File
#!/bin/sh
|
|
|
|
BASEDIR=$(dirname "$0")
|
|
|
|
sh -c "$*"
|
|
RESULT=$?
|
|
if [ 0 != "${RESULT}" ];then
|
|
echo "Failed '$*'! Exit code '${RESULT}' is not equal to 0"
|
|
"${BASEDIR}"/deployment-create-status failure
|
|
exit ${RESULT}
|
|
fi
|