mirror of
				https://github.com/9001/copyparty.git
				synced 2025-11-03 21:43:12 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			168 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			168 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/bash
 | 
						|
set -ex
 | 
						|
 | 
						|
[ -e setup.py ] || ..
 | 
						|
[ -e setup.py ] || {
 | 
						|
    echo u wot
 | 
						|
    exit 1
 | 
						|
}
 | 
						|
 | 
						|
cd .git/hooks
 | 
						|
rm -f pre-commit
 | 
						|
ln -s ../../scripts/run-tests.sh pre-commit
 |