manymanymany-varia-websites/publish

11 lines
243 B
Plaintext
Raw Normal View History

2020-03-11 17:21:40 +01:00
#!/usr/bin/env python3
import os
import os.path
import subprocess
2020-03-11 17:24:02 +01:00
paths = [p for p in os.listdir(".") if os.path.isdir(p) and "Makefile" in os.listdir(p)]
2020-03-11 17:21:40 +01:00
for path in paths:
subprocess.run("cd {} && make html".format(path), shell=True)