Escaped a singular double quote mark used for awk separation.

It was messing up code highlighting on github, and we can't have that!
This commit is contained in:
Marcus Whybrow 2012-05-24 02:48:05 +01:00
parent dabbbe94ab
commit d1e86f89ab

2
msm
View File

@ -734,7 +734,7 @@ init() {
# if not empty, set the property using declare
if [ ! -z "$line" ]; then
name="$(echo $line | awk -F '=' '{print $1}')"
value="$(echo $line | awk -F '"' '{print $2}')"
value="$(echo $line | awk -F '\"' '{print $2}')"
fi
case "$name" in