def run(self):
"""
Post install script
"""
cmd = [
'pod2man',
'--center=Container bootstrapping tool',
'--name=VIRT-BOOTSTRAP',
'--release=%s' % virtBootstrap.__version__,
'man/virt-bootstrap.pod',
'man/virt-bootstrap.1'
]
if subprocess.call(cmd) != 0:
raise RuntimeError("Building man pages has failed")
install.run(self)
评论列表
文章目录