Fix for buildcache -o (#19354)
* Fix for buildcache -o The method has more positional arguments than the caller expects. * Address length issue. Fix pylint/flake errors.
This commit is contained in:
parent
02575cb3bb
commit
25f817b8ae
@ -476,7 +476,8 @@ def installtarball(args):
|
|||||||
tty.die("build cache file installation requires" +
|
tty.die("build cache file installation requires" +
|
||||||
" at least one package spec argument")
|
" at least one package spec argument")
|
||||||
pkgs = set(args.specs)
|
pkgs = set(args.specs)
|
||||||
matches = match_downloaded_specs(pkgs, args.multiple, args.otherarch)
|
matches = match_downloaded_specs(pkgs, args.multiple, args.force,
|
||||||
|
args.otherarch)
|
||||||
|
|
||||||
for match in matches:
|
for match in matches:
|
||||||
install_tarball(match, args)
|
install_tarball(match, args)
|
||||||
|
Loading…
Reference in New Issue
Block a user