#Centipede do not error out when the src dir glob matches nothing.

PiperOrigin-RevId: 716332864
diff --git a/centipede/seed_corpus_maker_lib.cc b/centipede/seed_corpus_maker_lib.cc
index 4ad20f7..770728e 100644
--- a/centipede/seed_corpus_maker_lib.cc
+++ b/centipede/seed_corpus_maker_lib.cc
@@ -105,7 +105,10 @@
   // `source.num_recent_dirs()` most recent ones.
 
   std::vector<std::string> src_dirs;
-  RETURN_IF_NOT_OK(RemoteGlobMatch(source.dir_glob, src_dirs));
+  if (const auto match_status = RemoteGlobMatch(source.dir_glob, src_dirs);
+      !match_status.ok() && !absl::IsNotFound(match_status)) {
+    return match_status;
+  }
   LOG(INFO) << "Found " << src_dirs.size() << " corpus dir(s) matching "
             << source.dir_glob;
   // Sort in the ascending lexicographical order. We expect that dir names