mirror of
https://github.com/wez/wezterm.git
synced 2024-11-23 15:04:36 +03:00
30 lines
799 B
Python
Executable File
30 lines
799 B
Python
Executable File
#!/usr/bin/env python3
|
|
import glob
|
|
import os
|
|
import re
|
|
import sys
|
|
|
|
NIGHTLY = '20230712-072601-f4abf8fd'
|
|
|
|
SINCE = re.compile("\{\{since\('nightly'", re.MULTILINE)
|
|
|
|
for p in ["docs/**/*.md", "docs/**/*.markdown"]:
|
|
for filename in glob.glob(p, recursive=True):
|
|
with open(filename, "r") as f:
|
|
content = f.read()
|
|
|
|
adjusted = SINCE.sub(f"{{{{since('{NIGHTLY}'", content)
|
|
if content != adjusted:
|
|
print(filename)
|
|
with open(filename, "w") as f:
|
|
f.truncate()
|
|
f.write(adjusted)
|
|
|
|
SCHEME_DATA = 'docs/colorschemes/data.json'
|
|
with open(SCHEME_DATA, 'r') as f:
|
|
content = f.read()
|
|
with open(SCHEME_DATA, 'w') as f:
|
|
content = content.replace("nightly builds only", NIGHTLY)
|
|
f.truncate()
|
|
f.write(content)
|