We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dfd4b1c commit f2bc4acCopy full SHA for f2bc4ac
1 file changed
commands/run.sh
@@ -349,7 +349,7 @@ fi
349
if [[ "${BUILDKITE_PLUGIN_DOCKER_ALWAYS_PULL:-false}" =~ ^(true|on|1)$ ]] ; then
350
echo "--- :docker: Pulling ${image}"
351
retry "${BUILDKITE_PLUGIN_DOCKER_PULL_RETRIES:-3}" docker pull "${image}" || retry_exit_status="$?"
352
- if [ ${retry_exit_status:-0} -ne 0 ] ; then
+ if [ "${retry_exit_status:-0}" -ne 0 ] ; then
353
echo "!!! :docker: Pull failed."
354
exit "$retry_exit_status"
355
fi
0 commit comments