From d2ba730f33bfd95808ac4727df06cdd4c65baf5c Mon Sep 17 00:00:00 2001 From: Ed Santiago Date: Tue, 22 Oct 2024 13:08:56 -0600 Subject: [PATCH] buildah version display: use progress() ...to make it stand out just a little more. Signed-off-by: Ed Santiago --- hack/buildah-vendor-treadmill | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hack/buildah-vendor-treadmill b/hack/buildah-vendor-treadmill index 2bd8e550c0..bd5a5abe76 100755 --- a/hack/buildah-vendor-treadmill +++ b/hack/buildah-vendor-treadmill @@ -180,7 +180,7 @@ sub do_sync { # Looks good so far. my $buildah_old = vendored_buildah(); - print "-> buildah old = $buildah_old\n"; + progress("::: buildah OLD = $buildah_old :::\n"); # Pull main, and pivot back to this branch pull_main(); @@ -241,7 +241,7 @@ END_FAIL_INSTRUCTIONS showrun('make', 'vendor') == 0 or die "$ME: make vendor failed"; my $buildah_new = vendored_buildah(); - print "-> buildah new = $buildah_new\n"; + progress("::: buildah NEW = $buildah_new :::\n"); # Tweak .cirrus.yml so we run bud tests first in CI (to fail fast). tweak_cirrus_test_order();