From c705b6b17107b38c884d8e368d455a8eaa3b8728 Mon Sep 17 00:00:00 2001 From: Alexandre Aubin Date: Sun, 25 Aug 2024 12:06:29 +0200 Subject: [PATCH] curl tests: forgot to return the result code --- lib/tests.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/tests.sh b/lib/tests.sh index 0094a9b..46d5dc3 100644 --- a/lib/tests.sh +++ b/lib/tests.sh @@ -261,6 +261,8 @@ _VALIDATE_THAT_APP_CAN_BE_ACCESSED () { done LXC_EXEC "tail -v -n 15 \$(find /var/log/{nginx/,php*,$app_id_to_check} -mmin -3)" fi + + return $curl_result }