mirror of
https://git.launchpad.net/ubuntu-dev-tools
synced 2025-12-11 18:13:26 +00:00
sponsor-patch: stop checking for bzr being present
This commit is contained in:
parent
ee87f312bf
commit
addeb4f7fb
@ -46,11 +46,9 @@ def is_command_available(command, check_sbin=False):
|
|||||||
def check_dependencies():
|
def check_dependencies():
|
||||||
"Do we have all the commands we need for full functionality?"
|
"Do we have all the commands we need for full functionality?"
|
||||||
missing = []
|
missing = []
|
||||||
for cmd in ("patch", "bzr", "quilt", "dput", "lintian"):
|
for cmd in ("patch", "quilt", "dput", "lintian"):
|
||||||
if not is_command_available(cmd):
|
if not is_command_available(cmd):
|
||||||
missing.append(cmd)
|
missing.append(cmd)
|
||||||
if not is_command_available("bzr-buildpackage"):
|
|
||||||
missing.append("bzr-builddeb")
|
|
||||||
if not any(
|
if not any(
|
||||||
is_command_available(cmd, check_sbin=True) for cmd in ("pbuilder", "sbuild", "cowbuilder")
|
is_command_available(cmd, check_sbin=True) for cmd in ("pbuilder", "sbuild", "cowbuilder")
|
||||||
):
|
):
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user