Fixed bug with multline output.

This commit is contained in:
Ad5001 2021-12-29 20:14:35 +01:00
parent a06ddabdc4
commit 3daf138b09
Signed by: Ad5001
GPG key ID: EF45F9C6AFE20160

2
oop.sh
View file

@ -170,7 +170,7 @@ _accessProperty() {
if [ "$3" == "=" ]; then
eval "_${varName}_properties[$prop]=\"\$val\""
else
eval "echo \${_${varName}_properties[$prop]}"
eval "echo \"\${_${varName}_properties[$prop]}\""
fi
}