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

View File

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