From 68fdfeca135e07c7853315c80a638ea36d62b152 Mon Sep 17 00:00:00 2001 From: Gitouche <26656-gitouche@users.noreply.framagit.org> Date: Wed, 25 May 2022 21:22:15 +0200 Subject: [PATCH] matrix : variables are meant to be used --- podman-matrix/zz_build-images.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/podman-matrix/zz_build-images.sh b/podman-matrix/zz_build-images.sh index 05edcfb..f01f981 100755 --- a/podman-matrix/zz_build-images.sh +++ b/podman-matrix/zz_build-images.sh @@ -9,7 +9,7 @@ ensure_not_root buildfolder=/tmp/synapse-$$ -if ! podman image exists localhost/matrixdotorg/synapse:${synapse_version}; then +if ! podman image exists ${synapse_image}:${synapse_version}; then mkdir ${buildfolder} && curl -sSfL -- "https://github.com/matrix-org/synapse/archive/refs/tags/${synapse_version}.tar.gz" | \tar xz --strip-components 1 -C ${buildfolder}/ && { podman run -d --name buildkitd --privileged docker.io/moby/buildkit:latest &&