mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-11-10 19:56:47 +03:00
ed3cd75630
Co-authored-by: Andrew Murray <3112309+radarhere@users.noreply.github.com>
13 lines
284 B
Bash
Executable File
13 lines
284 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# install extra test images
|
|
|
|
archive=test-images-main
|
|
|
|
./download-and-extract.sh $archive https://github.com/python-pillow/test-images/archive/main.tar.gz
|
|
|
|
mv $archive/* ../Tests/images/
|
|
|
|
# Cleanup old tarball and empty directory
|
|
rm $archive.tar.gz
|
|
rmdir $archive
|