Make CSV output valid

This commit is contained in:
Martin Wimpress 2021-10-20 00:33:30 +01:00 committed by Martin Wimpress
parent 4eb11caa10
commit f542e798c5
1 changed files with 3 additions and 3 deletions

View File

@ -79,14 +79,14 @@ function list_all() {
for RELEASE in $("releases_${FUNC}"); do
if [ "${OS}" == "windows" ]; then
for LANG in "${LANGS[@]}"; do
echo "${DISPLAY_NAME},${OS},${RELEASE},${LANG}",
echo "${DISPLAY_NAME},${OS},${RELEASE},${LANG}"
done
elif [ "${OS}" == "popos" ]; then
for DRIVER in intel nvidia; do
echo "${DISPLAY_NAME},${OS},${RELEASE},${DRIVER}",
echo "${DISPLAY_NAME},${OS},${RELEASE},${DRIVER}"
done
else
echo "${DISPLAY_NAME},${OS},${RELEASE},,"
echo "${DISPLAY_NAME},${OS},${RELEASE},"
fi
done
done