Fix the launch-game.sh newlines not displaying in the console

This commit is contained in:
abcdefg30
2020-07-05 16:10:27 +02:00
committed by Oliver Brakmann
parent b00423dc76
commit baed80983b

View File

@@ -41,7 +41,7 @@ if [ $? != 0 ] && [ $? != 1 ]; then
elif command -v kdialog > /dev/null; then
kdialog --title "OpenRA" --error "${ERROR_MESSAGE}"
else
printf "%s\n" "${ERROR_MESSAGE}"
echo "${ERROR_MESSAGE}"
fi
exit 1
fi