From a432312b91d4124cb2477bca68ff085f72a04ed8 Mon Sep 17 00:00:00 2001 From: "Zaiming (Stone) Shi" Date: Mon, 7 Nov 2022 12:44:32 +0100 Subject: [PATCH] build: print apps in lines (but not as space separated args) --- scripts/find-apps.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/find-apps.sh b/scripts/find-apps.sh index 9ed84273a..96073c6b4 100755 --- a/scripts/find-apps.sh +++ b/scripts/find-apps.sh @@ -87,5 +87,5 @@ fi if [ "$WANT_JSON" = 'yes' ]; then echo "${RESULT}" | xargs | tr -d '\n' | jq -R -s -c 'split(" ")' else - echo "${RESULT}" | xargs + echo "${RESULT}" fi