Explorar el Código

Parallelize "docker pull" in "hello-world/update.sh"

Tianon Gravi hace 6 años
padre
commit
8a57a0ab64
Se han modificado 1 ficheros con 1 adiciones y 2 borrados
  1. 1 2
      hello-world/update.sh

+ 1 - 2
hello-world/update.sh

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