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
1 changed files with 1 additions and 1 deletions

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
}