mirror of
				https://github.com/godotengine/godot.git
				synced 2025-11-04 07:31:16 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
	
		
			358 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
	
		
			358 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
#!/usr/bin/env bash
 | 
						|
 | 
						|
# Git pre-commit hook that checks the class reference syntax using makerst.py.
 | 
						|
 | 
						|
# Workaround because we can't execute the .py file directly on windows
 | 
						|
PYTHON=python
 | 
						|
py_ver=$($PYTHON -c "import sys; print(sys.version_info.major)")
 | 
						|
if [[ "$py_ver" != "3" ]]; then
 | 
						|
  PYTHON+=3
 | 
						|
fi
 | 
						|
 | 
						|
$PYTHON doc/tools/makerst.py doc/classes modules --dry-run
 |