From 5ac8567bad5924d22ec28ec362bad7b0cce6d6c2 Mon Sep 17 00:00:00 2001 From: Debarshi Ray Date: Mon, 25 Sep 2023 16:02:56 +0200 Subject: [PATCH] test/system: Specify an explit return value This removes any ambiguities and makes it clear what value is being returned. https://github.com/containers/toolbox/pull/1377 --- test/system/libs/helpers.bash | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/system/libs/helpers.bash b/test/system/libs/helpers.bash index 56b60ec..20b7be6 100644 --- a/test/system/libs/helpers.bash +++ b/test/system/libs/helpers.bash @@ -133,6 +133,9 @@ function _pull_and_cache_distro_image() { fi cleanup_all + ret_val="$?" + + return "$ret_val" }