pmb.build.checksum: rename .check() to .update()

Rename the function to .update(), so it is clear what it does, and it is
clear what the difference to .verify() in the same file is.
This commit is contained in:
Oliver Smith 2019-05-24 22:41:31 +02:00
parent b4c301974e
commit 0431a51932
No known key found for this signature in database
GPG key ID: 5AE7F5513E0885CB
3 changed files with 3 additions and 3 deletions

View file

@ -122,7 +122,7 @@ def checksum(args):
if args.verify:
pmb.build.checksum.verify(args, package)
else:
pmb.build.checksum.check(args, package)
pmb.build.checksum.update(args, package)
def chroot(args):