()
| 1927 | |
| 1928 | |
| 1929 | def fetch_strawberry_perl() -> pathlib.Path: |
| 1930 | strawberryperl_zip = download_entry("strawberryperl", BUILD) |
| 1931 | strawberryperl = BUILD / "strawberry-perl" |
| 1932 | strawberryperl.mkdir(exist_ok=True) |
| 1933 | with zipfile.ZipFile(strawberryperl_zip) as zf: |
| 1934 | zf.extractall(strawberryperl) |
| 1935 | return strawberryperl |
| 1936 | |
| 1937 | |
| 1938 | def main() -> None: |
no test coverage detected