From d8820a86ed2ca169c7b411b6a8816a55e825f95e Mon Sep 17 00:00:00 2001 From: Francisco Ribeiro Date: Thu, 21 Sep 2017 17:15:35 +0100 Subject: [PATCH] fix return label for check 4.7 Signed-off-by: Francisco Ribeiro --- tests/4_container_images.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/4_container_images.sh b/tests/4_container_images.sh index 6867844..e4af49f 100644 --- a/tests/4_container_images.sh +++ b/tests/4_container_images.sh @@ -86,11 +86,11 @@ for img in $images; do if docker history "$img" 2>/dev/null | grep -e "update" >/dev/null 2>&1; then if [ $fail -eq 0 ]; then fail=1 - info "$check_4_7" + warn "$check_4_7" fi imgName=$(docker inspect --format='{{.RepoTags}}' "$img" 2>/dev/null) if ! [ "$imgName" = '[]' ]; then - info " * Update instruction found: $imgName" + warn " * Update instruction found: $imgName" fi fi done