mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
build(gen_vimdoc): print user's doxygen version if it's too old
@theHamsta suggested in https://github.com/neovim/neovim/pull/18348#discussion_r862594173 to also print the users doxygen version if the version is too old.
This commit is contained in:
parent
649cdc14ba
commit
59162584b1
@ -63,7 +63,8 @@ doxygen_version = tuple([int(i) for i in subprocess.check_output(["doxygen", "-v
|
|||||||
universal_newlines=True).split()[0].split('.')])
|
universal_newlines=True).split()[0].split('.')])
|
||||||
|
|
||||||
if doxygen_version < MIN_DOXYGEN_VERSION:
|
if doxygen_version < MIN_DOXYGEN_VERSION:
|
||||||
print("requires Doxygen {}.{}.{}+".format(*MIN_DOXYGEN_VERSION))
|
print("\nRequires doxygen {}.{}.{}+".format(*MIN_DOXYGEN_VERSION))
|
||||||
|
print("Your doxygen version is {}.{}.{}\n".format(*doxygen_version))
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
|
||||||
# DEBUG = ('DEBUG' in os.environ)
|
# DEBUG = ('DEBUG' in os.environ)
|
||||||
|
Loading…
Reference in New Issue
Block a user