mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-12-28 10:56:18 +03:00
13 lines
288 B
Bash
Executable File
13 lines
288 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# install extra test images
|
|
|
|
archive=test-images-main
|
|
|
|
./download-and-extract.sh $archive https://github.com/hugovk/test-images/archive/refs/heads/main.tar.gz
|
|
|
|
mv $archive/* ../Tests/images/
|
|
|
|
# Cleanup old tarball and empty directory
|
|
rm $archive.tar.gz
|
|
rm -r $archive
|