Skip to content

Commit

Permalink
Merge pull request #36 from marcosps/quiet-fetch
Browse files Browse the repository at this point in the history
ksrc: Add --quiet to git fetch
  • Loading branch information
fgyanz authored Oct 25, 2024
2 parents 7830cd2 + 385a00c commit c41e6a7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions klpbuild/ksrc.py
Original file line number Diff line number Diff line change
Expand Up @@ -209,9 +209,9 @@ def get_commits(self, cve):
print("Fetching changes from all supported branches...")

# Mount the command to fetch all branches for supported codestreams
args = ["/usr/bin/git", "-C", self.kern_src, "fetch", "--tags", "origin"]
args.extend(self.kernel_branches.values())
subprocess.check_output(args)
subprocess.check_output(["/usr/bin/git", "-C", self.kern_src, "fetch",
"--quiet", "--tags", "origin"] +
list(self.kernel_branches.values()))

print("Getting SUSE fixes for upstream commits per CVE branch. It can take some time...")

Expand Down

0 comments on commit c41e6a7

Please sign in to comment.