From d68242a5e3df358686f9ddc34d6c88f7f4b939d8 Mon Sep 17 00:00:00 2001 From: Gitouche <26656-gitouche@users.noreply.framagit.org> Date: Sat, 13 Aug 2022 22:50:37 +0200 Subject: [PATCH] functions.sh : fix --- functions.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions.sh b/functions.sh index 4ec292a..efaae2a 100644 --- a/functions.sh +++ b/functions.sh @@ -312,6 +312,6 @@ oci_push_to_registry () { # Try x times because of unexplained error 500 for i in $(seq 1 3); do podman push ${1} && s=0 && break || s=$? && sleep 1; done; (exit $s) && podman image rm ${1} && - podman pull ${1} && + podman pull ${1} fi }