]> git.ipfire.org Git - thirdparty/git.git/blobdiff - git-svn.perl
git-svn: correctly handle boolean options via git-config
[thirdparty/git.git] / git-svn.perl
index 8ebaae9ff8865ab638f7a2db8c64f2d22f227470..d792a62d7ca400145d57189b5ca8af97978fef4d 100755 (executable)
@@ -1610,7 +1610,7 @@ sub read_repo_config {
                        @$v = @tmp if @tmp;
                } else {
                        chomp(my $tmp = `$arg --get svn.$key`);
-                       if ($tmp && !($arg =~ / --bool / && $tmp eq 'false')) {
+                       if ($tmp && !($arg =~ / --bool/ && $tmp eq 'false')) {
                                $$v = $tmp;
                        }
                }