delete cruft test script

This commit is contained in:
Hans-Christoph Steiner 2025-03-05 17:43:50 +01:00
parent a69340a1ea
commit 59474437b3

View file

@ -1,13 +0,0 @@
#!/usr/bin/env python3
import ruamel.yaml
from pathlib import Path
mirrors_yml = Path('/home/hans/code/fdroid/fdroiddata/config/mirrors.yml')
with mirrors_yml.open() as fp:
mirrors_config = ruamel.yaml.YAML(typ='safe').load(fp)
for d in mirrors_config:
d['url'] += '/repo'
print(d, end=',\n')