Ignore broken "']" dconf entries
This commit is contained in:
parent
8e1e3e117d
commit
99ee2c1ed2
|
@ -83,7 +83,11 @@ function dconf-dump {
|
||||||
if [[ "$line" == "["* ]]; then
|
if [[ "$line" == "["* ]]; then
|
||||||
current_section="$line"
|
current_section="$line"
|
||||||
ignore_section=false
|
ignore_section=false
|
||||||
|
elif [[ "$line" == "']" ]]; then
|
||||||
|
current_section="$line"
|
||||||
|
ignore_section=true
|
||||||
fi
|
fi
|
||||||
|
|
||||||
case "$current_section" in
|
case "$current_section" in
|
||||||
"[org/gnome/desktop/background]" | \
|
"[org/gnome/desktop/background]" | \
|
||||||
"[org/gnome/shell/extensions/gsconnect"*)
|
"[org/gnome/shell/extensions/gsconnect"*)
|
||||||
|
|
Loading…
Reference in New Issue