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 <james.o.hunt@intel.com>
This commit is contained in:
James O. D. Hunt 2023-12-06 15:30:18 +00:00
parent 3ad43df946
commit 563ea020b0

View File

@ -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()