From 335e19e2389621c0f4182cd40d55c176df549c12 Mon Sep 17 00:00:00 2001 From: Axel Burri Date: Sun, 4 Dec 2022 00:50:15 +0100 Subject: [PATCH] btrbk: allow quotes for all config values Regression of: 9d217857 btrbk: fix parsing of quoted "target" config line --- btrbk | 2 ++ 1 file changed, 2 insertions(+) diff --git a/btrbk b/btrbk index ed13d41..47a89b8 100755 --- a/btrbk +++ b/btrbk @@ -4258,6 +4258,8 @@ sub parse_config_line($$$;@) } else { + $value =~ s/^"(.*)"$/$1/; + $value =~ s/^'(.*)'$/$1/; return append_config_option($cur, $key, $value, $cur->{CONTEXT}, error_statement => $error_statement); }