From 12c4382ec2a1c3b35c152122b2d716173e8b127f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicolas=20Mass=C3=A9?= Date: Fri, 6 Mar 2026 14:25:33 +0100 Subject: [PATCH] fix typo --- build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sh b/build.sh index 167dbdc..9323a95 100755 --- a/build.sh +++ b/build.sh @@ -7,7 +7,7 @@ declare -a PODMAN_ARGS=() # Inject the desired CentOS Stream version as build arguments declare CENTOS_VERSION="10" -PODMAN_ARGS+=( --arg CENTOS_VERSION="${CENTOS_VERSION}" --arg EPEL_VERSION="${CENTOS_VERSION}" ) +PODMAN_ARGS+=( --build-arg CENTOS_VERSION="${CENTOS_VERSION}" --build-arg EPEL_VERSION="${CENTOS_VERSION}" ) # Tag the resulting image with the current date declare TS="$(date -I)"