Browse Source

For reals this time

Tianon Gravi 8 years ago
parent
commit
f4e8dae905
1 changed files with 2 additions and 2 deletions
  1. 2 2
      hello-world/update.sh

+ 2 - 2
hello-world/update.sh

@@ -3,8 +3,8 @@ set -Eeuo pipefail
 
 image="${1:-hello-world}"
 
-docker pull hello-world &> /dev/null || exit
-docker pull "$image" &> /dev/null || exit
+docker pull hello-world &> /dev/null || exit 0
+docker pull "$image" &> /dev/null || exit 0
 
 exec > "$(dirname "$(readlink -f "$BASH_SOURCE")")/content.md"