summaryrefslogtreecommitdiff
path: root/hack
diff options
context:
space:
mode:
authorChris Evich <cevich@redhat.com>2019-08-07 10:39:05 -0400
committerChris Evich <cevich@redhat.com>2019-08-12 12:01:55 -0400
commitb843804d51ec3fb747670201b6178896d9a4580d (patch)
tree82e398fec66a261134a79150b781ce787e008dcf /hack
parent5f99703594414039b9e7e1b615687d009f21d7c4 (diff)
downloadpodman-b843804d51ec3fb747670201b6178896d9a4580d.tar.gz
podman-b843804d51ec3fb747670201b6178896d9a4580d.tar.bz2
podman-b843804d51ec3fb747670201b6178896d9a4580d.zip
Adjust get_ci_vm.sh for substitution
Signed-off-by: Chris Evich <cevich@redhat.com>
Diffstat (limited to 'hack')
-rwxr-xr-xhack/get_ci_vm.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/hack/get_ci_vm.sh b/hack/get_ci_vm.sh
index 90e3aea8e..e1588d570 100755
--- a/hack/get_ci_vm.sh
+++ b/hack/get_ci_vm.sh
@@ -68,9 +68,10 @@ delvm() {
}
image_hints() {
+ _BIS=$(egrep -m 1 '_BUILT_IMAGE_SUFFIX:[[:space:]+"[[:print:]]+"' "$LIBPODROOT/.cirrus.yml" | cut -d: -f 2 | tr -d '"[:blank:]')
egrep '[[:space:]]+[[:alnum:]].+_CACHE_IMAGE_NAME:[[:space:]+"[[:print:]]+"' \
"$LIBPODROOT/.cirrus.yml" | cut -d: -f 2 | tr -d '"[:blank:]' | \
- grep -v 'notready' | sort -u
+ sed -r -e "s/\\\$[{]_BUILT_IMAGE_SUFFIX[}]/$_BIS/" | sort -u
}
show_usage() {