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
This commit is contained in:
Debarshi Ray 2023-09-25 16:02:56 +02:00
parent 61e2c970f8
commit 5ac8567bad

View file

@ -133,6 +133,9 @@ function _pull_and_cache_distro_image() {
fi
cleanup_all
ret_val="$?"
return "$ret_val"
}