From 0f97828b312e5c0dcc5663f07a4122ae65c44de0 Mon Sep 17 00:00:00 2001 From: Seth Grover Date: Mon, 16 Sep 2024 14:01:55 -0600 Subject: [PATCH] script update --- scripts/github_image_helper.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/github_image_helper.sh b/scripts/github_image_helper.sh index b78029c51..248121e30 100755 --- a/scripts/github_image_helper.sh +++ b/scripts/github_image_helper.sh @@ -115,7 +115,7 @@ function PullAndTagGithubWorkflowImages() { BRANCH="$(_gitbranch)" VERSION="$(_malcolmversion)" OWNER="$(_gitowner)" - echo "Pulling images from ghcr.io/$OWNER ($BRANCH) and tagging as ${VERSION}${IMAGE_ARCH_SUFFIX}..." + echo "Pulling images with $MALCOLM_CONTAINER_RUNTIME from ghcr.io/$OWNER ($BRANCH) and tagging as ${VERSION}${IMAGE_ARCH_SUFFIX}..." for IMG in $($GREP image: "$(_gittoplevel)"/docker-compose.yml | _cols 2 | cut -d: -f1 | sort -u | sed "s/.*\/\(malcolm\)/\1/"); do _PullAndTagGithubWorkflowBuild "$IMG" done @@ -126,7 +126,7 @@ function PullAndTagGithubWorkflowISOImages() { BRANCH="$(_gitbranch)" VERSION="$(_malcolmversion)" OWNER="$(_gitowner)" - echo "Pulling ISO wrapper images from ghcr.io/$OWNER ($BRANCH) and tagging as $VERSION ..." + echo "Pulling ISO wrapper images with $MALCOLM_CONTAINER_RUNTIME from ghcr.io/$OWNER ($BRANCH) and tagging as $VERSION ..." for IMG in malcolm/{malcolm,hedgehog}; do _PullAndTagGithubWorkflowBuild "$IMG" done