mirror of
				https://github.com/neovim/neovim.git
				synced 2025-10-26 12:27:24 +00: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:
		| @@ -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) | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Dundar Goc
					Dundar Goc