about summary refs log tree commit homepage
path: root/lib/PublicInbox/LeiForgetExternal.pm
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2023-09-24 05:42:09 +0000
committerEric Wong <e@80x24.org>2023-09-24 18:56:05 +0000
commite3455d2f3b100a13cbf7cfe6b36619096a2c4e8a (patch)
tree7422e59993cf9dfe53565ca7a69818b2f9493bc5 /lib/PublicInbox/LeiForgetExternal.pm
parent89ded2496df4b638aa35c93a1a48f572261d2a02 (diff)
downloadpublic-inbox-e3455d2f3b100a13cbf7cfe6b36619096a2c4e8a.tar.gz
2020-2021 were bad times and I somehow got deluded into
believing git-config(1) would always succeed :x
Diffstat (limited to 'lib/PublicInbox/LeiForgetExternal.pm')
-rw-r--r--lib/PublicInbox/LeiForgetExternal.pm3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/PublicInbox/LeiForgetExternal.pm b/lib/PublicInbox/LeiForgetExternal.pm
index 39bfc60b..c8d1df38 100644
--- a/lib/PublicInbox/LeiForgetExternal.pm
+++ b/lib/PublicInbox/LeiForgetExternal.pm
@@ -16,8 +16,7 @@ sub lei_forget_external {
                         next if $seen{$l}++;
                         my $key = "external.$l.boost";
                         delete($cfg->{$key});
-                        $lei->_config('--unset', $key);
-                        if ($? == 0) {
+                        if ($lei->_config('+e', '--unset', $key)) {
                                 $lei->qerr("# $l forgotten ");
                         } elsif (($? >> 8) == 5) {
                                 warn("# $l not found\n");