build: print apps in lines (but not as space separated args)

This commit is contained in:
Zaiming (Stone) Shi 2022-11-07 12:44:32 +01:00
parent 8f0ef274a8
commit a432312b91
1 changed files with 1 additions and 1 deletions

View File

@ -87,5 +87,5 @@ fi
if [ "$WANT_JSON" = 'yes' ]; then if [ "$WANT_JSON" = 'yes' ]; then
echo "${RESULT}" | xargs | tr -d '\n' | jq -R -s -c 'split(" ")' echo "${RESULT}" | xargs | tr -d '\n' | jq -R -s -c 'split(" ")'
else else
echo "${RESULT}" | xargs echo "${RESULT}"
fi fi