mirror of
https://github.com/elgohr/Publish-Docker-Github-Action.git
synced 2026-03-12 18:07:12 -04:00
8 lines
133 B
Bash
Executable File
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
|