mirror of
				https://github.com/python-pillow/Pillow.git
				synced 2025-11-04 01:47:47 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			407 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			407 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/bash
 | 
						|
# install extra test images
 | 
						|
 | 
						|
rm -rf test_images
 | 
						|
 | 
						|
# Use SVN to just fetch a single Git subdirectory
 | 
						|
svn_checkout()
 | 
						|
{
 | 
						|
	if [ ! -z $1 ]; then
 | 
						|
		echo ""
 | 
						|
		echo "Retrying svn checkout..."
 | 
						|
		echo ""
 | 
						|
	fi
 | 
						|
 | 
						|
	svn checkout https://github.com/python-pillow/pillow-depends/trunk/test_images
 | 
						|
}
 | 
						|
svn_checkout || svn_checkout retry || svn_checkout retry || svn_checkout retry
 | 
						|
 | 
						|
cp -r test_images/* ../Tests/images
 |