mirror of https://github.com/google/oss-fuzz.git
Log output when we fail to detect main repo. (#3599)
This commit is contained in:
parent
149bb8bee7
commit
81febde566
|
@ -92,4 +92,6 @@ def detect_main_repo(project_name, repo_name=None, commit=None):
|
|||
match = re.search(r'\bDetected repo: ([^ ]+) ([^ ]+)', out.rstrip())
|
||||
if match and match.group(1) and match.group(2):
|
||||
return match.group(1), match.group(2)
|
||||
|
||||
logging.error('Failed to detect repo:\n%s', out)
|
||||
return None, None
|
||||
|
|
Loading…
Reference in New Issue