Skip to content

Commit 1925a27

Browse files
yann-morin-1998michal42
authored andcommitted
scripts/config: fix double-quotes un-escaping
When reporting a string value, only the first double-quote was un-escaped. We need to un-escape all escaped double-quotes. Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Michal Marek <mmarek@suse.cz>
1 parent 5b580fa commit 1925a27

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ while [ "$1" != "" ] ; do
128128
V="${V/#CONFIG_$ARG=/}"
129129
V="${V/#\"/}"
130130
V="${V/%\"/}"
131-
V="${V/\\\"/\"}"
131+
V="${V//\\\"/\"}"
132132
echo "${V}"
133133
fi
134134
fi

0 commit comments

Comments
 (0)