neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

commit 59162584b1d03e7739afb5116ad96e2c16c7b271
parent 649cdc14ba1f352c14179bd177f6156bd322cbed
Author: Dundar Goc <gocdundar@gmail.com>
Date:   Mon,  2 May 2022 11:14:34 +0200

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.

Diffstat:
Mscripts/gen_vimdoc.py | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/scripts/gen_vimdoc.py b/scripts/gen_vimdoc.py @@ -63,7 +63,8 @@ doxygen_version = tuple([int(i) for i in subprocess.check_output(["doxygen", "-v universal_newlines=True).split()[0].split('.')]) 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) # DEBUG = ('DEBUG' in os.environ)