Skip to content
Snippets Groups Projects
Commit d78e00e4 authored by Augie Fackler's avatar Augie Fackler
Browse files

hghave: add check for bdist_mpkg

parent 92d37fb3
No related branches found
No related tags found
No related merge requests found
......@@ -456,6 +456,14 @@
def has_osx():
return sys.platform == 'darwin'
@check("bdistmpkg", "bdist_mpkg Python Package")
def has_bdistmpkg():
try:
import bdist_mpkg.script_bdist_mpkg
return True
except ImportError:
return False
@check("docker", "docker support")
def has_docker():
pat = r'A self-sufficient runtime for'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment