quote message also in case statement

I don't now if its needed, but in my try to find the error in my commands.sh version, I also quoted the $MESSAGE in the case statement.
Since it does not hurt it seems to be on the safe side.
This commit is contained in:
Kay Marquardt 2019-02-28 20:26:26 +01:00 committed by GitHub
parent dfdbb5f599
commit 44d96a9b8b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -47,7 +47,7 @@ else
fi
fi &
fi
case $MESSAGE in
case "$MESSAGE" in
'/question')
startproc "./question"
;;