Update define.sh

This commit is contained in:
Kroese 2024-06-05 20:06:04 +02:00 committed by GitHub
parent 76484e1330
commit a397746054
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -291,7 +291,7 @@ printVersion() {
if [ -z "$desc" ]; then
desc="Windows"
[[ "${PLATFORM,,}" != "x64" ]] && desc="$desc for ${PLATFORM}"
[[ "${PLATFORM,,}" != "x64" ]] && desc+=" for ${PLATFORM}"
fi
echo "$desc"
@ -326,7 +326,7 @@ printEdition() {
;;
esac
[ -n "$edition" ] && result="$result $edition"
[ -n "$edition" ] && result+=" $edition"
echo "$result"
return 0