2016-11-22 17:47:33 +03:00
|
|
|
#!/bin/bash
|
|
|
|
# install extra test images
|
|
|
|
|
2018-09-20 12:52:56 +03:00
|
|
|
# Use SVN to just fetch a single Git subdirectory
|
2019-10-28 13:17:32 +03:00
|
|
|
svn_export()
|
2018-09-20 12:52:56 +03:00
|
|
|
{
|
2020-05-01 21:23:39 +03:00
|
|
|
if [ ! -z $1 ]; then
|
|
|
|
echo ""
|
|
|
|
echo "Retrying svn export..."
|
|
|
|
echo ""
|
|
|
|
fi
|
2018-09-20 12:52:56 +03:00
|
|
|
|
2020-05-01 21:23:39 +03:00
|
|
|
svn export --force https://github.com/python-pillow/pillow-depends/trunk/test_images ../Tests/images
|
2018-09-20 12:52:56 +03:00
|
|
|
}
|
2019-10-28 13:17:32 +03:00
|
|
|
svn_export || svn_export retry || svn_export retry || svn_export retry
|