Files
Publish-Docker-Github-Action/stub.sh
2019-09-23 20:37:42 +02:00

8 lines
133 B
Bash
Executable File

#!/bin/sh
parameters="$@"
echo "Called $0 ${parameters}"
if [ "${MOCK_ERROR_CONDITION}" = "${parameters}" ]; then
exit 1
fi
exit 0