Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed installing extra test images (#9681)
Over at python-pillow, our CIFuzz job has [started failing](https://github.com/python-pillow/Pillow/actions/runs/4147683686/jobs/7174854267#step:4:7800) - > depends/install_extra_test_images.sh: line 6: ./download-and-extract.sh: No such file or directory This is because we recently merged python-pillow/Pillow#6918, which changes `depends/install_extra_test_images.sh` to call `./download-and-extract.sh`, which exists inside [`depends`](https://github.com/python-pillow/Pillow/tree/main/depends). So when https://github.com/google/oss-fuzz/blob/00b08f6592b90d438e113138c64cd4025fbb3bdf/projects/pillow/Dockerfile#L41 runs, it can't find `./download-and-extract.sh`, because it is running from the base Pillow directory. So this PR changes the command to run from inside `depends` instead. Co-authored-by: Andrew Murray <radarhere@users.noreply.github.com>
- Loading branch information