From 3d08ccd6db7010b0f2d47d626dece1916bf941f0 Mon Sep 17 00:00:00 2001 From: "James O. D. Hunt" Date: Mon, 22 Oct 2018 09:31:22 +0100 Subject: [PATCH] CI: Fold long Travis check line Folded the overly-long Travis check line in `check_install_guides()`. Signed-off-by: James O. D. Hunt --- .ci/test-install-docs.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.ci/test-install-docs.sh b/.ci/test-install-docs.sh index 870d7dc83..45f694e27 100755 --- a/.ci/test-install-docs.sh +++ b/.ci/test-install-docs.sh @@ -17,7 +17,11 @@ info() # commands it specified result in a working system. check_install_guides() { - [ -n "$TRAVIS" ] && info "Not testing install guide as Travis lacks modern distro support and VT-x" && return + if [ -n "$TRAVIS" ] + then + info "Not testing install guide as Travis lacks modern distro support and VT-x" + return + fi # List of filters used to restrict the types of file changes. # See git-diff-tree(1) for further info.