user/dev discussion of public-inbox itself
 help / color / mirror / code / Atom feed
* [PATCH] index: allow working on unconfigured inboxes, again
@ 2019-01-15 20:06 Eric Wong
  0 siblings, 0 replies; only message in thread
From: Eric Wong @ 2019-01-15 20:06 UTC (permalink / raw)
  To: meta

---
 script/public-inbox-index | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/script/public-inbox-index b/script/public-inbox-index
index 73ad9bc..2ae9275 100755
--- a/script/public-inbox-index
+++ b/script/public-inbox-index
@@ -14,7 +14,7 @@ my $usage = "public-inbox-index REPO_DIR";
 use PublicInbox::Config;
 my $config = eval { PublicInbox::Config->new } || eval {
 	warn "public-inbox unconfigured for serving, indexing anyways...\n";
-	{}
+	undef;
 };
 eval { require PublicInbox::SearchIdx };
 if ($@) {
@@ -73,7 +73,7 @@ if (@ARGV) {
 sub usage { print STDERR "Usage: $usage\n"; exit 1 }
 usage() unless @dirs;
 
-$config->each_inbox(sub {
+defined($config) and $config->each_inbox(sub {
 	my ($ibx) = @_;
 
 	for my $i (0..$#dirs) {
-- 
EW


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2019-01-15 20:06 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-01-15 20:06 [PATCH] index: allow working on unconfigured inboxes, again Eric Wong

Code repositories for project(s) associated with this public inbox

	https://80x24.org/public-inbox.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).