From f60a336f8f3005e8b94b2977305739a0dd34d69e Mon Sep 17 00:00:00 2001 From: Michele Locati Date: Thu, 1 Jul 2021 12:38:29 +0200 Subject: [PATCH] Fix "ci-test-extensions all" --- scripts/ci-test-extensions | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/ci-test-extensions b/scripts/ci-test-extensions index 634cef7..5cd7199 100755 --- a/scripts/ci-test-extensions +++ b/scripts/ci-test-extensions @@ -361,7 +361,7 @@ case "${1:-}" in EXTENSIONS_TO_BE_TESTED="${2:-}" ;; all) - EXTENSIONS_TO_BE_TESTED="$(cat "$CI_BUILD_DIR/data/supported-extensions" | cut -d' ' -f1)" + EXTENSIONS_TO_BE_TESTED="$(cat "$CI_BUILD_DIR/data/supported-extensions" | cut -d' ' -f1 | tr '\n' ' ')" ;; *) if test -z "${1:-}"; then