From 563ea020b0864f6cddd0174778eb249ff00c0622 Mon Sep 17 00:00:00 2001 From: "James O. D. Hunt" Date: Wed, 6 Dec 2023 15:30:18 +0000 Subject: [PATCH] CI: static-checks: Fold long line Break up a long line as little to make it easier to read. Signed-off-by: James O. D. Hunt --- tests/static-checks.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tests/static-checks.sh b/tests/static-checks.sh index a1b606ec62..0635fc8c69 100755 --- a/tests/static-checks.sh +++ b/tests/static-checks.sh @@ -811,7 +811,10 @@ static_check_docs() popd - [ $docs_failed -eq 0 ] || die "spell check failed, See https://github.com/kata-containers/kata-containers/blob/main/docs/Documentation-Requirements.md#spelling for more information." + [ $docs_failed -eq 0 ] || { + url='https://github.com/kata-containers/kata-containers/blob/main/docs/Documentation-Requirements.md#spelling' + die "spell check failed, See $url for more information." + } } static_check_eof()