fix docs CI

This commit is contained in:
Maximilian Hils 2021-02-13 12:29:52 +01:00
parent d2c9efc98f
commit b5d9dcdeee

View File

@ -6,7 +6,7 @@ from pathlib import Path
here = Path(__file__).parent
for script in (here / "scripts").glob("*.py"):
for script in sorted((here / "scripts").glob("*.py")):
print(f"Generating output for {script.name}...")
out = subprocess.check_output(["python3", script.absolute()], text=True)
if out: