Browse code

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.

Tianon Gravi authored on 2013/12/31 00:38:43
Showing 1 changed files
... ...
@@ -116,7 +116,7 @@ case "$lsb_dist" in
116 116
 			(
117 117
 				set -x
118 118
 				$sh_c 'docker run busybox echo "Docker has been successfully installed!"'
119
-			)
119
+			) || true
120 120
 		fi
121 121
 		exit 0
122 122
 		;;