From fc197188d7f4098b6035d0e13031431871a2dc95 Mon Sep 17 00:00:00 2001 From: Tianon Gravi Date: Mon, 30 Dec 2013 08:38:43 -0700 Subject: [PATCH] Fix install failure when busybox can't be downloaded Whether or not the "busybox" image downloads and runs properly at the end of the build, we don't want to have the script return a failing exit code, especially since at that point, Docker is successfully installed, and we're just tooting our own horn for good measure. --- hack/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hack/install.sh b/hack/install.sh index 34d5b7fbde..a22bb5c48e 100755 --- a/hack/install.sh +++ b/hack/install.sh @@ -116,7 +116,7 @@ case "$lsb_dist" in ( set -x $sh_c 'docker run busybox echo "Docker has been successfully installed!"' - ) + ) || true fi exit 0 ;;