#98 Do not specify a stop ref if none were found
Merged 3 years ago by pingou. Opened 3 years ago by pingou.
fedora-infra/ pingou/rpmautospec master  into  master

file modified
+4 -1
@@ -135,7 +135,10 @@ 

          entry = []

          evr = current_evr or "LATEST"

          last_author = None

-         for log_line in git_get_log(repocopy, toref=f"{stop_commit_hash}^"):

+         toref = None

+         if stop_commit_hash:

+             toref = f"{stop_commit_hash}^"

+         for log_line in git_get_log(repocopy, toref=toref):

              if not log_line.strip():

                  continue

              commit = log_line.split(" ", 1)[0]

Signed-off-by: Pierre-Yves Chibon pingou@pingoured.fr

rebased onto af4a57a3508163ac329f3ff2f00391e5cec77d0c

3 years ago

Metadata Update from @nphilipp:
- Request assigned

3 years ago

rebased onto 416cb4e

3 years ago

pytest and black/flake8 are happy, let's get this in :)

Pull-Request has been merged by pingou

3 years ago

Build succeeded.