mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-03 21:43:21 +00:00 
			
		
		
		
	/bin/sh and /usr/bin/env are the only two binaries that NixOS provides at a fixed path (outside a buildFHSUserEnv sandbox). This discussion was split from #11004. Signed-off-by: Anders Kaseorg <andersk@mit.edu>
		
			
				
	
	
		
			13 lines
		
	
	
		
			286 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			286 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/usr/bin/env bash
 | 
						|
 | 
						|
if ! [ -d ".git/hooks/" ]; then
 | 
						|
    echo "Error: Could not find .git/hooks directory"
 | 
						|
    echo "Please re-run this script from the root of your zulip.git checkout"
 | 
						|
    exit 1
 | 
						|
fi
 | 
						|
 | 
						|
for hook in pre-commit commit-msg
 | 
						|
do
 | 
						|
    ln -snf ../../tools/"$hook" .git/hooks/
 | 
						|
done
 |