Skip to content

Commit f2bc4ac

Browse files
committed
fix tests
1 parent dfd4b1c commit f2bc4ac

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

commands/run.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -349,7 +349,7 @@ fi
349349
if [[ "${BUILDKITE_PLUGIN_DOCKER_ALWAYS_PULL:-false}" =~ ^(true|on|1)$ ]] ; then
350350
echo "--- :docker: Pulling ${image}"
351351
retry "${BUILDKITE_PLUGIN_DOCKER_PULL_RETRIES:-3}" docker pull "${image}" || retry_exit_status="$?"
352-
if [ ${retry_exit_status:-0} -ne 0 ] ; then
352+
if [ "${retry_exit_status:-0}" -ne 0 ] ; then
353353
echo "!!! :docker: Pull failed."
354354
exit "$retry_exit_status"
355355
fi

0 commit comments

Comments
 (0)