From 9f85e13da9d179fe4b057fa097a8afc0d97af4b1 Mon Sep 17 00:00:00 2001 From: Debarshi Ray Date: Mon, 25 Sep 2023 17:21:23 +0200 Subject: [PATCH] test/system: Use the standard error output for error messages https://github.com/containers/toolbox/pull/1377 --- test/system/libs/helpers.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/system/libs/helpers.bash b/test/system/libs/helpers.bash index 20b7be6..f4132d0 100644 --- a/test/system/libs/helpers.bash +++ b/test/system/libs/helpers.bash @@ -127,7 +127,7 @@ function _pull_and_cache_distro_image() { done if ! $cached; then - echo "Failed to cache image ${image} to ${IMAGE_CACHE_DIR}/${image_archive}" + echo "Failed to cache image ${image} to ${IMAGE_CACHE_DIR}/${image_archive}" >&2 [ "$error_message" != "" ] && echo "$error_message" >&2 return "$ret_val" fi