From 562685feac7bca98c0edfa87fc13aff6d54978d7 Mon Sep 17 00:00:00 2001 From: project-repo Date: Fri, 14 Apr 2023 21:57:27 +0200 Subject: [PATCH] Fix minor error in shellcheck test --- test/shellcheck | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/test/shellcheck b/test/shellcheck index 0727178..0a3dbbe 100644 --- a/test/shellcheck +++ b/test/shellcheck @@ -4,13 +4,12 @@ RESULT=0 -set -x # shellcheck disable=2164 cd "${MESONCURRENTCONFIGDIR}/test" # shellcheck disable=2046 shellcheck --source-path=../example_scripts/ $(ls -Itesting-configurations) || RESULT=1 cd "${MESONCURRENTCONFIGDIR}/example_scripts/" || RESULT=1 -shellcheck ./* +shellcheck ./* || RESULT=1 exit "${RESULT}"