mirror of
https://github.com/msmhq/msm.git
synced 2024-08-30 18:12:35 +00:00
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:
parent
dabbbe94ab
commit
d1e86f89ab
2
msm
2
msm
@ -734,7 +734,7 @@ init() {
|
|||||||
# if not empty, set the property using declare
|
# if not empty, set the property using declare
|
||||||
if [ ! -z "$line" ]; then
|
if [ ! -z "$line" ]; then
|
||||||
name="$(echo $line | awk -F '=' '{print $1}')"
|
name="$(echo $line | awk -F '=' '{print $1}')"
|
||||||
value="$(echo $line | awk -F '"' '{print $2}')"
|
value="$(echo $line | awk -F '\"' '{print $2}')"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
case "$name" in
|
case "$name" in
|
||||||
|
Loading…
x
Reference in New Issue
Block a user